diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-10-26 14:04:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 14:04:15 -0700 |
commit | ff0b5150f1cef5456a685b492ee4f4f02b6e2ef5 (patch) | |
tree | cae1b7657d6b85bb982e961aae6d54ff90ba8b3c /src/components | |
parent | 5a85322c927c96aee89ee0c7239e03bdab3f241d (diff) | |
parent | 2662b1704930eff56a61194a6796d463df687889 (diff) | |
download | homer-ff0b5150f1cef5456a685b492ee4f4f02b6e2ef5.tar.gz homer-ff0b5150f1cef5456a685b492ee4f4f02b6e2ef5.tar.zst homer-ff0b5150f1cef5456a685b492ee4f4f02b6e2ef5.zip |
Merge pull request #151 from taigrr/spellcheck
chore: applies spell-check against entire repo (aspell)
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/DynamicTheme.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/DynamicTheme.vue b/src/components/DynamicTheme.vue index fc2fd55..2d37fcb 100644 --- a/src/components/DynamicTheme.vue +++ b/src/components/DynamicTheme.vue | |||
@@ -25,7 +25,7 @@ export default { | |||
25 | for (const themeVars in theme) { | 25 | for (const themeVars in theme) { |
26 | let value = `${theme[themeVars]}`; | 26 | let value = `${theme[themeVars]}`; |
27 | if (!value) { | 27 | if (!value) { |
28 | value = "inital"; | 28 | value = "initial"; |
29 | } else if (themeVars == "background-image") { | 29 | } else if (themeVars == "background-image") { |
30 | value = `url(${theme[themeVars]})`; | 30 | value = `url(${theme[themeVars]})`; |
31 | } | 31 | } |