Skip to content

Commit

Permalink
Avoid wrapping VM concern lables into more than one line
Browse files Browse the repository at this point in the history
Reference: #1025

Wrap the VM concern labels in provider VMs tab and Plan create VMs modal
into one line.

Signed-off-by: Sharon Gratch <sgratch@redhat.com>
  • Loading branch information
sgratch committed Apr 1, 2024
1 parent 6a154d7 commit ae1e089
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 ae1e089

Please sign in to comment.