forked from open-webui/open-webui
refac: code style
This commit is contained in:
parent
dfeadf9595
commit
cf44209730
1 changed files with 1 additions and 5 deletions
|
@ -91,11 +91,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
const applyTheme = (_theme: string) => {
|
const applyTheme = (_theme: string) => {
|
||||||
let themeToApply = _theme;
|
let themeToApply = _theme === 'oled-dark' ? 'dark' : _theme;
|
||||||
|
|
||||||
if (themeToApply.includes('oled')) {
|
|
||||||
themeToApply = 'dark';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_theme === 'system') {
|
if (_theme === 'system') {
|
||||||
themeToApply = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
themeToApply = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
||||||
|
|
Loading…
Reference in a new issue