Skip to content

Commit

Permalink
chore: display artwork list title in one line (#8849)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimatretyak authored Jun 9, 2023
1 parent 90f582e commit 8c1aef7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ const Item: FC<ArtworkListItemProps> = (props) => {
<ArtworkListImagePreview imageURL={imageURL} />

<Flex flex={1}>
<Text variant="xs">{artworkList.name}</Text>
<Text variant="xs" numberOfLines={1}>
{artworkList.name}
</Text>
<Text variant="xs" color="black60">
{getArtworksCountText()}
</Text>
Expand Down

0 comments on commit 8c1aef7

Please sign in to comment.