We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e016a8 commit 844a774Copy full SHA for 844a774
1 file changed
resources/js/processes/modeler/components/inspector/TaskAssignment.vue
@@ -249,22 +249,6 @@
249
},
250
251
methods: {
252
- /**
253
- * Safely parse JSON string, returning empty object on error
254
- * @param {string} jsonString - The JSON string to parse
255
- * @returns {object} - Parsed object or empty object if parsing fails
256
- */
257
- safeJsonParse(jsonString) {
258
- if (!jsonString) {
259
- return {};
260
- }
261
- try {
262
- return JSON.parse(jsonString);
263
- } catch (e) {
264
- console.warn('Failed to parse JSON:', e);
265
266
267
- },
268
getConfigurableValue(configurable) {
269
switch (configurable) {
270
case 'LOCK_TASK_ASSIGNMENT':
0 commit comments