From 4104dd119fbc83155f4a5a98235173e7e6272c02 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 29 May 2021 22:59:25 +0100 Subject: [PATCH] Fixed typo in Saved dialog, Re #7 --- src/components/Configuration/JsonEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Configuration/JsonEditor.vue b/src/components/Configuration/JsonEditor.vue index e07c02df..712254d0 100644 --- a/src/components/Configuration/JsonEditor.vue +++ b/src/components/Configuration/JsonEditor.vue @@ -38,7 +38,7 @@ export default { methods: { save() { localStorage.setItem(localStorageKeys.CONF_SECTIONS, JSON.stringify(this.jsonData)); - this.$toasted.show('Changes seved succesfully'); + this.$toasted.show('Changes saved succesfully'); }, }, };