Skip to content

Commit

Permalink
add detleting status to status group and topoligy class list
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacov committed Sep 9, 2020
1 parent 7751361 commit d554f7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export const getVMStatusGroups: StatusGroupMapper = (
VMStatusSimpleLabel.Migrating,
VMStatusSimpleLabel.Stopping,
StatusSimpleLabel.Pending,
VMStatusSimpleLabel.Deleting,
],
count: 0,
filterType: 'vm-status',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const ObservedVmNode: React.FC<VmNodeProps> = ({
case VMStatus.STARTING:
statusClass = 'kubevirt-m-not-ready';
break;
case VMStatus.DELETING:
case VMStatus.STOPPING:
statusClass = 'kubevirt-m-terminating';
break;
Expand Down

0 comments on commit d554f7c

Please sign in to comment.