From 4cc8ed5e917fedb9a04e9365e8efeabc01c8024a Mon Sep 17 00:00:00 2001 From: Miodec Date: Sat, 28 Jan 2023 19:50:03 +0100 Subject: [PATCH] fixed theme buttons not showing up if user has favorites --- frontend/src/ts/settings/theme-picker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/settings/theme-picker.ts b/frontend/src/ts/settings/theme-picker.ts index 83f1e5bf6..6a83ae575 100644 --- a/frontend/src/ts/settings/theme-picker.ts +++ b/frontend/src/ts/settings/theme-picker.ts @@ -217,7 +217,7 @@ export async function refreshButtons(): Promise { //then the rest for (const theme of themes) { if (Config.favThemes.includes(theme.name)) { - return; + continue; } const activeTheme = activeThemeName === theme.name ? "active" : "";