From b8afb0e0eb71f0d9feeba60cd281b8c6fa7fc425 Mon Sep 17 00:00:00 2001 From: NFish Date: Fri, 6 Jun 2025 14:47:52 +0800 Subject: [PATCH] fix: show ellipsis when text too long --- web/app/components/app/app-publisher/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/app/components/app/app-publisher/index.tsx b/web/app/components/app/app-publisher/index.tsx index 5825bb72ee..1485964198 100644 --- a/web/app/components/app/app-publisher/index.tsx +++ b/web/app/components/app/app-publisher/index.tsx @@ -278,7 +278,7 @@ const AppPublisher = ({ onClick={() => { setShowAppAccessControl(true) }}> -
+
{appDetail?.access_mode === AccessMode.ORGANIZATION && <> @@ -288,7 +288,9 @@ const AppPublisher = ({ {appDetail?.access_mode === AccessMode.SPECIFIC_GROUPS_MEMBERS && <> -

{t('app.accessControlDialog.accessItems.specific')}

+
+ {t('app.accessControlDialog.accessItems.specific')} +
} {appDetail?.access_mode === AccessMode.PUBLIC