Add missing setup for default global prep command exclusion dropdown (#1085)

This commit is contained in:
pgrunzjr 2023-03-27 19:55:28 -05:00 committed by GitHub
parent be74b740f5
commit 79cf382cd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,6 +273,7 @@
output: "",
cmd: [],
index: -1,
"exclude-global-prep-cmd": false,
"prep-cmd": [],
detached: [],
"image-path": ""
@ -287,6 +288,8 @@
this.$set(this.editForm, "prep-cmd", []);
if (this.editForm["detached"] === undefined)
this.$set(this.editForm, "detached", []);
if (this.editForm["exclude-global-prep-cmd"] === undefined)
this.$set(this.editForm, "exclude-global-prep-cmd", false);
this.showEditForm = true;
},
showDeleteForm(id) {