Fix: fix app title restoration (#13208)

This commit is contained in:
shamoon
2026-07-22 18:53:45 -07:00
committed by GitHub
parent afb19fe637
commit 6e052d5507
3 changed files with 9 additions and 6 deletions
+3 -1
View File
@@ -1,10 +1,12 @@
const base_url = new URL(document.baseURI)
export const DEFAULT_APP_TITLE = 'Paperless-ngx'
export const environment = {
production: true,
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '10', // match src/paperless/settings.py
appTitle: 'Paperless-ngx',
appTitle: DEFAULT_APP_TITLE,
tag: 'prod',
version: '3.0.0',
webSocketHost: window.location.host,