Skip to content

Commit 3e96631

Browse files
committed
fix(ui): don't display task modal if template is null
1 parent b3d320b commit 3e96631

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

web/src/components/TaskForm.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,10 +334,7 @@ export default {
334334
},
335335
336336
isLoaded() {
337-
return this.item != null;
338-
// && this.template != null
339-
// && this.buildTasks != null
340-
// && this.inventory != null;
337+
return this.item != null && this.template != null;
341338
},
342339
343340
beforeSave() {

0 commit comments

Comments
 (0)