1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Always display a Node's taints' values (#3646)

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-08-19 13:40:16 -04:00 committed by GitHub
parent 43c38b714b
commit 902224a6dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ export class NodeDetails extends React.Component<Props> {
<DrawerItem name="Taints" labelsOnly> <DrawerItem name="Taints" labelsOnly>
{ {
taints.map(({ key, effect, value }) => ( taints.map(({ key, effect, value }) => (
<Badge key={key} label={`${key}: ${effect}`} tooltip={value}/> <Badge key={key} label={`${key}=${value}:${effect}`} />
)) ))
} }
</DrawerItem> </DrawerItem>