Skip to content

Commit

Permalink
fix: max
Browse files Browse the repository at this point in the history
  • Loading branch information
trueai-org committed Aug 11, 2024
1 parent a5b544b commit f387c85
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/Task/List/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,12 @@ const List: React.FC = () => {
render: (text, record, index) => {
return (
<Image.PreviewGroup items={record.images || []}>
<Image style={{ borderRadius: 0 }} key={index} width={60} src={record.imageUrl} />
<Image
style={{ borderRadius: 0, maxHeight: 120 }}
key={index}
width={60}
src={record.imageUrl}
/>
</Image.PreviewGroup>
);
},
Expand Down

0 comments on commit f387c85

Please sign in to comment.