Development

This commit is contained in:
Matthew Grotke 2026-06-11 02:01:06 -04:00
parent b6958c51fd
commit c561f2f548
2 changed files with 1 additions and 4 deletions

View file

@ -7,7 +7,7 @@ def product_name():
def web_app_display_name():
edition = 'Pro' if is_pro() else 'CE'
return os.environ.get('WEB_APP_DISPLAY_NAME', f'{product_name().capitalize()}-{edition}')
return os.environ.get('WEB_APP_DISPLAY_NAME', f'{product_name().capitalize()}-{edition} Dashboard')
def is_production():