Skip to content

Commit

Permalink
Merge pull request #1048 from sgratch/vm-concerns-in-one-line
Browse files Browse the repository at this point in the history
🐞 Avoid wrapping VM concern lables into more than one line
  • Loading branch information
yaacov authored Apr 1, 2024
2 parents de53ef3 + ae1e089 commit 37c9180
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const VMConcernsCellRenderer: React.FC<VMCellProps> = ({ data }) => {

return (
<TableCell>
<Flex spaceItems={{ default: 'spaceItemsNone' }}>
<Flex spaceItems={{ default: 'spaceItemsNone' }} flexWrap={{ default: 'nowrap' }}>
{['Critical', 'Information', 'Warning'].map((category) => (
<FlexItem key={category}>
<ConcernPopover category={category} concerns={groupedConcerns[category] || []} />
Expand Down

0 comments on commit 37c9180

Please sign in to comment.