]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: restore version tag display (#10592)
authorshamoon <4887959+shamoon@users.noreply.github.com>
Sun, 17 Aug 2025 06:57:53 +0000 (23:57 -0700)
committerGitHub <noreply@github.com>
Sun, 17 Aug 2025 06:57:53 +0000 (23:57 -0700)
src-ui/src/app/components/app-frame/app-frame.component.ts

index 35b5b5bdc7ac48d398e17369b01b9357ccd0b0aa..b29f3fc05856e18543b573953ecbb81b0cbbf04b 100644 (file)
@@ -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 {