Skip to content

Commit

Permalink
style: remove bottom margin of model store error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
agatha197 committed Aug 22, 2024
1 parent 01c9e65 commit fd481a0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion react/src/pages/ModelStoreListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,10 @@ const ModelStoreListPage: React.FC = () => {
{item?.error_msg && (
<Alert
message={
<Typography.Paragraph ellipsis={{ rows: 6 }}>
<Typography.Paragraph
ellipsis={{ rows: 6 }}
style={{ marginBottom: 0 }}
>
{item.error_msg}
</Typography.Paragraph>
}
Expand Down

0 comments on commit fd481a0

Please sign in to comment.