Add missing setup for default global prep command exclusion dropdown (#1085)
This commit is contained in:
parent
be74b740f5
commit
79cf382cd9
1 changed files with 3 additions and 0 deletions
|
|
@ -273,6 +273,7 @@
|
||||||
output: "",
|
output: "",
|
||||||
cmd: [],
|
cmd: [],
|
||||||
index: -1,
|
index: -1,
|
||||||
|
"exclude-global-prep-cmd": false,
|
||||||
"prep-cmd": [],
|
"prep-cmd": [],
|
||||||
detached: [],
|
detached: [],
|
||||||
"image-path": ""
|
"image-path": ""
|
||||||
|
|
@ -287,6 +288,8 @@
|
||||||
this.$set(this.editForm, "prep-cmd", []);
|
this.$set(this.editForm, "prep-cmd", []);
|
||||||
if (this.editForm["detached"] === undefined)
|
if (this.editForm["detached"] === undefined)
|
||||||
this.$set(this.editForm, "detached", []);
|
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;
|
this.showEditForm = true;
|
||||||
},
|
},
|
||||||
showDeleteForm(id) {
|
showDeleteForm(id) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue