Skip to content

Commit

Permalink
CNV-21086: Change Not migratable label style
Browse files Browse the repository at this point in the history
Change the label to Compact, Unfilled, Orange,
according to the design changes and Patternfly styles.

Fixes https://issues.redhat.com/browse/CNV-21086
  • Loading branch information
Hilda Stastna committed Feb 1, 2023
1 parent 6ce0ccb commit d9edf49
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ const VMNotMigratableLabel: React.FC<VMNotMigratableLabelProps> = ({ vm }) => {

return !isMigratable ? (
<SplitItem>
<Label key="available-boot">{t('Not migratable')}</Label>
<Label isCompact variant="outline" color="orange" key="available-boot">
{t('Not migratable')}
</Label>
</SplitItem>
) : null;
};
Expand Down

0 comments on commit d9edf49

Please sign in to comment.