We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e12899d commit 82b9518Copy full SHA for 82b9518
packages/compass-connections-navigation/src/base-navigation-item.tsx
@@ -98,10 +98,11 @@ const ClusterStateBadge: React.FunctionComponent<{
98
}> = ({ state }) => {
99
const badgeVariant =
100
state === 'CREATING' ? BadgeVariant.Blue : BadgeVariant.LightGray;
101
+ const badgeText = state === 'DELETING' ? 'TERMINATING' : state;
102
103
return (
104
<Badge variant={badgeVariant} data-testid="navigation-item-state-badge">
- {state}
105
+ {badgeText}
106
</Badge>
107
);
108
};
0 commit comments