Skip to content

Commit

Permalink
🔀 Merge pull request gchq#217 from Lissy93/FIX/spell-fix
Browse files Browse the repository at this point in the history
[FIX] Spelling
  • Loading branch information
Lissy93 authored Sep 10, 2021
2 parents 49e7b88 + c5d5a80 commit cf4bc8a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/.misspell-fixer.ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

^./src/assets/locales/de.json
^./src/assets/locales/es.json
^./src/assets/locales/fr.json
^./src/assets/locales/nl.json
^./src/assets/locales/sl.json
^./src/assets/locales/zh-CN.json
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# Build the container, and push if succesful
# Build the container, and push if successful
- name: Build and push Docker image ⚒️
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
Expand Down
2 changes: 1 addition & 1 deletion src/components/Configuration/CustomCss.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Configuration/EditSiteMeta.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/global-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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…" }

Expand Down

0 comments on commit cf4bc8a

Please sign in to comment.