Skip to content

Commit

Permalink
fix(SystemChip): prevent word wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland committed Feb 6, 2025
1 parent f156a62 commit 37d7958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/common/components/SystemChip/SystemChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const SystemChip: FC<SystemChipProps> = ({
}

return (
<BaseChip className={className}>
<BaseChip className={cn('whitespace-nowrap', className)}>
<img src={iconUrl} alt={nameShort} width={18} height={18} />

<span className={cn(showLabel ? null : 'sr-only')}>{children ?? nameShort}</span>
Expand Down

0 comments on commit 37d7958

Please sign in to comment.