From 19cd0b997141ee88cf314cc0970b885b7e0c758e Mon Sep 17 00:00:00 2001 From: Rubu Jam Date: Mon, 27 May 2024 22:15:34 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style:=20Improve=20the=20display?= =?UTF-8?q?=20effect=20of=20plug-in=20API=20name=20and=20description=20(#2?= =?UTF-8?q?678)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/PluginDetailModal/APIs.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/features/PluginDetailModal/APIs.tsx b/src/features/PluginDetailModal/APIs.tsx index 8f8ed40787f9..8f2d9bb8edf5 100644 --- a/src/features/PluginDetailModal/APIs.tsx +++ b/src/features/PluginDetailModal/APIs.tsx @@ -22,13 +22,11 @@ const APIs = memo<{ columns={[ { dataIndex: 'name', - ellipsis: true, render: (name: string) => {name}, title: t('detailModal.info.name'), }, { dataIndex: 'description', - ellipsis: true, title: t('detailModal.info.description'), }, ]} @@ -36,6 +34,7 @@ const APIs = memo<{ pagination={false} rowKey={'name'} size={'small'} + tableLayout="fixed" /> );