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

This commit is contained in:
Yohany Flores Suarez 2026-02-01 10:48:44 -05:00 committed by GitHub
parent 1fde1894a7
commit 4d2eb04537
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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);`
}
}