diff options
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 | } |