Settings/controls: fix editing command block
This commit is contained in:
parent
80b7654db5
commit
9b808a2c36
@ -205,12 +205,12 @@ export default {
|
||||
if (this.currentCmdIndex < 0) {
|
||||
this.action.cmd.push({
|
||||
action: action,
|
||||
arg: arg.arg,
|
||||
arg: arg,
|
||||
customArg: customArg,
|
||||
});
|
||||
} else {
|
||||
this.action.cmd[this.currentCmdIndex] = {
|
||||
cmd: action,
|
||||
action: action,
|
||||
arg: arg,
|
||||
customArg: customArg,
|
||||
};
|
||||
|
@ -111,9 +111,10 @@ export default {
|
||||
},
|
||||
created () {
|
||||
if (this.action) {
|
||||
this.selectedAction = this.action.cmd;
|
||||
this.selectedAction = this.action.action;
|
||||
console.log("THIS:ACTION", this.action)
|
||||
this.selectedArgument = {
|
||||
name: ActionList[this.action.cmd].args.find(x => x.arg === this.action.arg) || ActionList[this.action.cmd].args.find(x => x.customArg),
|
||||
name: ActionList[this.action.action].args.find(x => x.arg === this.action.arg) || ActionList[this.action.action].args.find(x => x.customArg),
|
||||
arg: this.action.arg
|
||||
}
|
||||
this.customArgumentValue = this.action.customArg;
|
||||
|
Loading…
Reference in New Issue
Block a user