Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Remington Breeze <[email protected]>
  • Loading branch information
rbreeze committed Jun 2, 2021
1 parent 358896a commit a9566df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ export class PodView extends React.Component<PodViewProps> {
fullName: nodeKey(rnode),
metadata: {name: rnode.name},
spec: {nodeName: 'Unknown'},
health: rnode.health?.status || 'Unknown'
health: rnode.health ? rnode.health.status : 'Unknown'
} as Pod;

// Get node name for Pod
Expand Down

0 comments on commit a9566df

Please sign in to comment.