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.
status
1 parent 941b569 commit eadc6feCopy full SHA for eadc6fe
frontend/public/components/cluster-settings/cluster-operator.tsx
@@ -81,7 +81,7 @@ const ClusterOperatorRow: React.SFC<ClusterOperatorRowProps> = ({obj}) => {
81
{message ? _.truncate(message, { length: 256, separator: ' ' }) : '-'}
82
</div>
83
<div className="col-md-3 col-sm-3 hidden-xs">
84
- {obj.status.version || <span className="text-muted">Unknown</span>}
+ {_.get(obj, 'status.version') || <span className="text-muted">Unknown</span>}
85
86
</div>;
87
};
0 commit comments