mirror of https://github.com/Lissy93/dashy.git
✏️ Fix minor in-code typos
This commit is contained in:
parent
8183a2bf17
commit
eb93f00702
|
@ -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 {
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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…" }
|
||||
|
||||
|
|
Loading…
Reference in New Issue