bug fix in delete file in macros
This commit is contained in:
@@ -636,6 +636,7 @@ module.exports = {
|
|||||||
];
|
];
|
||||||
|
|
||||||
this.save_config(this.config);
|
this.save_config(this.config);
|
||||||
|
this.state.folder = "default";
|
||||||
this.deleteGCode = false;
|
this.deleteGCode = false;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -390,7 +390,11 @@ module.exports = {
|
|||||||
alert: true,
|
alert: true,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
const macros_list = this.state.macros_list.map(item => item.file_name).toString();
|
const non_macros_list = this.state.non_macros_list.map(item => item.file_name);
|
||||||
|
const macros_list = this.state.macros_list
|
||||||
|
.filter(item => !non_macros_list.includes(item.file_name))
|
||||||
|
.map(item => item.file_name)
|
||||||
|
.toString();
|
||||||
api.delete(`file/DINCAIQABiDARixAxiABDIHCAMQABiABDIHCAQQABiABDIH${macros_list}`);
|
api.delete(`file/DINCAIQABiDARixAxiABDIHCAMQABiABDIHCAQQABiABDIH${macros_list}`);
|
||||||
this.config.macros_list = [];
|
this.config.macros_list = [];
|
||||||
this.edited = false;
|
this.edited = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user