parent
d214bca4bc
commit
ce7aa0e947
|
@ -463,9 +463,10 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
copy(row) {
|
copy(row) {
|
||||||
row.copy = true;
|
let rowParam = JSON.parse(JSON.stringify(row));
|
||||||
row.name = 'copy_'+row.name;
|
rowParam.copy = true;
|
||||||
this.$emit('edit', row);
|
rowParam.name = 'copy_'+rowParam.name;
|
||||||
|
this.$emit('edit', rowParam);
|
||||||
},
|
},
|
||||||
showReport(row) {
|
showReport(row) {
|
||||||
this.runVisible = true;
|
this.runVisible = true;
|
||||||
|
|
Loading…
Reference in New Issue