From a15129a00c496a428cd0af4f4da5f7c09310e47c Mon Sep 17 00:00:00 2001 From: CorrectRoad Date: Fri, 16 May 2025 14:35:22 +0800 Subject: [PATCH] fix: fix overflow when bot description too long (#19805) --- web/app/components/app-sidebar/app-info.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/app-sidebar/app-info.tsx b/web/app/components/app-sidebar/app-info.tsx index 5ec0e318a0..34c64f520b 100644 --- a/web/app/components/app-sidebar/app-info.tsx +++ b/web/app/components/app-sidebar/app-info.tsx @@ -247,7 +247,7 @@ const AppInfo = ({ expand }: IAppInfoProps) => { {/* description */} {appDetail.description && ( -
{appDetail.description}
+
{appDetail.description}
)} {/* operations */}