Skip to content

Commit

Permalink
Avoid wrapping the migration VM status pipeline's name to the next line
Browse files Browse the repository at this point in the history
Withing the Plan -> VMs tab -> expended VM status section -> Pipeline
table -> name column:
Avoid automatic wrapping of the cell content into next line in specific window's width.

Signed-off-by: Sharon Gratch <sgratch@redhat.com>
  • Loading branch information
sgratch committed Sep 12, 2024
1 parent 28eea5e commit 8b4ea99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export const MigrationVirtualMachinesRowExtended: React.FC<RowProps<VMData>> = (
<Tbody>
{(pipeline || []).map((p) => (
<Tr key={p?.name}>
<Td>
<Td modifier="nowrap">
<ProgressStepper isCompact isVertical={true} isCenterAligned={false}>
<ProgressStep
key={p?.name}
Expand Down

0 comments on commit 8b4ea99

Please sign in to comment.