From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 17 Aug 2025 06:57:53 +0000 (-0700) Subject: Fix: restore version tag display (#10592) X-Git-Tag: v2.18.1~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82ec1be622f4f6d01f46708e7bdc2c8f4a6d1479;p=thirdparty%2Fpaperless-ngx.git Fix: restore version tag display (#10592) --- 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 35b5b5bdc..b29f3fc05 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 @@ -145,7 +145,7 @@ export class AppFrameComponent } get versionString(): string { - return `${environment.appTitle} v${this.settingsService.get(SETTINGS_KEYS.VERSION)}${environment.production ? '' : ` #${environment.tag}`}` + return `${environment.appTitle} v${this.settingsService.get(SETTINGS_KEYS.VERSION)}${environment.tag === 'prod' ? '' : ` #${environment.tag}`}` } get customAppTitle(): string {