Sfoglia il codice sorgente

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

Yohany Flores Suarez 5 mesi fa
parent
commit
4d2eb04537
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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);`
     }
 }