From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 29 Aug 2025 16:55:43 +0000 (-0700) Subject: Fix: hide sidebar counts during saved views organization (#10716) X-Git-Tag: v2.18.3~1^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08887cb8e30934ec351b2f0241a447f5218ce9d4;p=thirdparty%2Fpaperless-ngx.git Fix: hide sidebar counts during saved views organization (#10716) --- 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 + ) } }