Fix theme cached handling

This commit is contained in:
the-djmaze 2023-03-17 23:20:42 +01:00
parent b85ed63ff6
commit e30f9854b7
4 changed files with 22 additions and 21 deletions

View file

@ -1,7 +1,7 @@
import 'External/ko';
import { Settings, SettingsGet } from 'Common/Globals';
import { ThemeStore } from 'Stores/Theme';
import { initThemes } from 'Stores/Theme';
import Remote from 'Remote/Admin/Fetch';
@ -18,7 +18,7 @@ export class AdminApp extends AbstractApp {
}
refresh() {
ThemeStore.populate();
initThemes();
this.start();
}