Browse Source

Syntax error: Mismatched quote characters will break the string literal.

Yohany Flores Suarez 5 months ago
parent
commit
8ffed8757e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/resources/vue/App.vue

+ 1 - 1
frontend/resources/vue/App.vue

@@ -364,7 +364,7 @@ function applyTheme() {
     if (themePreference.value && themePreference.value !== '') {
         themeStyle.textContent = `@import url('/custom-webui/themes/${themePreference.value}/theme.css') layer(theme);`
     } else {
-        themeStyle.textContent = '@import url('/theme.css') layer(theme);'
+        themeStyle.textContent = `@import url('/theme.css') layer(theme);`
     }
 }