Skip to content

Commit

Permalink
💄 style: Improve the display effect of plug-in API name and descripti…
Browse files Browse the repository at this point in the history
…on (lobehub#2678)
  • Loading branch information
RubuJam authored May 27, 2024
1 parent 774c6c9 commit 19cd0b9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/features/PluginDetailModal/APIs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,19 @@ const APIs = memo<{
columns={[
{
dataIndex: 'name',
ellipsis: true,
render: (name: string) => <code>{name}</code>,
title: t('detailModal.info.name'),
},
{
dataIndex: 'description',
ellipsis: true,
title: t('detailModal.info.description'),
},
]}
dataSource={pluginManifest.api}
pagination={false}
rowKey={'name'}
size={'small'}
tableLayout="fixed"
/>
</Flexbox>
);
Expand Down

0 comments on commit 19cd0b9

Please sign in to comment.