Skip to content

Commit

Permalink
fix: remove max-width from text component to prevent truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
🎲 committed Dec 14, 2024
1 parent fd9cb54 commit 107b677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/components/registry-entry-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const RegistryEntryCard: React.FC<RegistryEntryCardProps> = ({ item, subs
</Card.Section>
<Stack gap={0} pl={'md'} pr={'md'}>
<Group justify="space-between" mt="md" mb="xs">
<Text fw={500} maw={175} truncate>
<Text fw={500} truncate>
{item.name}
</Text>
</Group>
Expand Down

1 comment on commit 107b677

@JonathanTurnock
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Resolves #43

Please sign in to comment.