🚩 Adds warning and note for local save

This commit is contained in:
Alicia Sykes 2022-05-01 22:05:37 +01:00
parent f107dbfc00
commit 7d91d51fa6

View File

@ -144,7 +144,11 @@ export default {
this.writeConfigToDisk(this.config);
},
saveLocally() {
const msg = this.$t('interactive-editor.menu.save-locally-warning');
const youSure = confirm(msg); // eslint-disable-line no-alert, no-restricted-globals
if (youSure) {
this.saveConfigLocally(this.jsonData);
}
},
/* Convert error messages into readable format for UI */
validationErrors(errors) {