From 3db2c910e072b2ba509638c3d24730b14abad849 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 15 Feb 2026 17:32:34 +0200 Subject: [PATCH] fix(client/active_badges): wrong enable + missing toggle for icon pack & custom CSS --- apps/client/src/widgets/layout/ActiveContentBadges.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/client/src/widgets/layout/ActiveContentBadges.tsx b/apps/client/src/widgets/layout/ActiveContentBadges.tsx index 3049e46243..fcccd00f29 100644 --- a/apps/client/src/widgets/layout/ActiveContentBadges.tsx +++ b/apps/client/src/widgets/layout/ActiveContentBadges.tsx @@ -251,10 +251,13 @@ function useActiveContentInfo(note: FNote | null | undefined) { for (const labelToCheck of activeContentLabels) { if (note.hasLabel(labelToCheck)) { type = labelToCheck; + isEnabled = true; + canToggleEnabled = true; break; } else if (note.hasLabel(`disabled:${labelToCheck}`)) { type = labelToCheck; isEnabled = false; + canToggleEnabled = true; break; } }