From 8ffed8757eb5e02e0ada4b6df1fa2ae5cee3aa0c Mon Sep 17 00:00:00 2001 From: Yohany Flores Suarez Date: Sun, 1 Feb 2026 10:48:44 -0500 Subject: [PATCH] Syntax error: Mismatched quote characters will break the string literal. --- frontend/resources/vue/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/resources/vue/App.vue b/frontend/resources/vue/App.vue index 8c61c1a6..3acbe21b 100644 --- a/frontend/resources/vue/App.vue +++ b/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);` } }