From 6844d59371accf5e8f22f1d658f2711b056bfa70 Mon Sep 17 00:00:00 2001 From: GareArc Date: Thu, 13 Mar 2025 17:07:45 -0400 Subject: [PATCH] fix: add default title name --- api/services/feature_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/services/feature_service.py b/api/services/feature_service.py index 1a3a4026ad..e5afcd09c4 100644 --- a/api/services/feature_service.py +++ b/api/services/feature_service.py @@ -38,7 +38,7 @@ class LicenseModel(BaseModel): class BrandingModel(BaseModel): enabled: bool = False - application_title: str = "" + application_title: str = "Dify" login_page_logo: str = "" workspace_logo: str = "" favicon: str = ""