fix: 修复执行动作无法添加问题
This commit is contained in:
parent
4200ea9711
commit
0fca64771a
|
@ -84,7 +84,7 @@ const onSave = (data: any, options?: any) => {
|
||||||
key: data.key,
|
key: data.key,
|
||||||
options: {
|
options: {
|
||||||
...options,
|
...options,
|
||||||
columns: options.otherColumns.filter((item?: string) => item)
|
columns: options.otherColumns?.filter((item?: string) => item) || []
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
emit('add', item)
|
emit('add', item)
|
||||||
|
|
Loading…
Reference in New Issue