From eb93f00702328e996664b9021aae73f965138bee Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 10 Sep 2021 21:26:25 +0100 Subject: [PATCH] :pencil2: Fix minor in-code typos --- src/components/Configuration/CustomCss.vue | 2 +- src/components/Configuration/EditSiteMeta.vue | 2 +- src/styles/global-styles.scss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Configuration/CustomCss.vue b/src/components/Configuration/CustomCss.vue index c9f6fe5e..535c7f8c 100644 --- a/src/components/Configuration/CustomCss.vue +++ b/src/components/Configuration/CustomCss.vue @@ -48,7 +48,7 @@ export default { const appConfig = { ...this.config.appConfig }; appConfig.customCss = this.customCss; localStorage.setItem(localStorageKeys.APP_CONFIG, JSON.stringify(appConfig)); - msg = 'Changes saved succesfully'; + msg = 'Changes saved successfully'; this.inject(this.customCss); if (this.customCss === '') setTimeout(() => { location.reload(); }, 1500); // eslint-disable-line no-restricted-globals } else { diff --git a/src/components/Configuration/EditSiteMeta.vue b/src/components/Configuration/EditSiteMeta.vue index b64a7f5b..a372e9b6 100644 --- a/src/components/Configuration/EditSiteMeta.vue +++ b/src/components/Configuration/EditSiteMeta.vue @@ -64,7 +64,7 @@ export default { pageInfo.navLinks = this.formElements.navLinks.filter(link => (link.title !== '')); } localStorage.setItem(localStorageKeys.PAGE_INFO, JSON.stringify(pageInfo)); - this.$toasted.show('Changes saved succesfully'); + this.$toasted.show('Changes saved successfully'); setTimeout(() => { location.reload(); }, 1500); // eslint-disable-line no-restricted-globals }, addNavLinkRow() { diff --git a/src/styles/global-styles.scss b/src/styles/global-styles.scss index 14a1e5ab..bd93f79a 100644 --- a/src/styles/global-styles.scss +++ b/src/styles/global-styles.scss @@ -22,7 +22,7 @@ html { } } -/* Hide text, and show 'Loading...' while Vue is intializing tags */ +/* Hide text, and show 'Loading...' while Vue is initializing tags */ [v-cloak] > * { display:none } [v-cloak]::before { content: "loading…" }