From 08887cb8e30934ec351b2f0241a447f5218ce9d4 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 29 Aug 2025 09:55:43 -0700 Subject: [PATCH] Fix: hide sidebar counts during saved views organization (#10716) --- src-ui/src/app/components/app-frame/app-frame.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/app-frame/app-frame.component.ts b/src-ui/src/app/components/app-frame/app-frame.component.ts index b29f3fc05..28f6ad9b9 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.ts +++ b/src-ui/src/app/components/app-frame/app-frame.component.ts @@ -287,6 +287,9 @@ export class AppFrameComponent } get showSidebarCounts(): boolean { - return this.settingsService.get(SETTINGS_KEYS.SIDEBAR_VIEWS_SHOW_COUNT) + return ( + this.settingsService.get(SETTINGS_KEYS.SIDEBAR_VIEWS_SHOW_COUNT) && + !this.settingsService.organizingSidebarSavedViews + ) } }