mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-13 20:13:24 +01:00
🚩 Adds warning and note for local save
This commit is contained in:
parent
f107dbfc00
commit
7d91d51fa6
1 changed files with 5 additions and 1 deletions
|
|
@ -144,7 +144,11 @@ export default {
|
|||
this.writeConfigToDisk(this.config);
|
||||
},
|
||||
saveLocally() {
|
||||
this.saveConfigLocally(this.jsonData);
|
||||
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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue