We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc418c commit 7293d16Copy full SHA for 7293d16
web/src/components/TaskForm.vue
@@ -230,7 +230,17 @@ export default {
230
},
231
232
args() {
233
- return JSON.parse(this.item.arguments || '[]');
+ let res = this.item.arguments;
234
+
235
+ if (res == null) {
236
+ res = this.template.arguments;
237
+ }
238
239
240
+ res = '[]';
241
242
243
+ return JSON.parse(res);
244
245
246
app() {
0 commit comments