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 aa7c355 commit f665407Copy full SHA for f665407
src/components/ControlPlane/FluxList.tsx
@@ -115,7 +115,7 @@ export default function FluxList() {
115
'True',
116
statusUpdateTime: item.status.conditions.find((x) => x.type === 'Ready')
117
?.lastTransitionTime,
118
- revision: shortenCommitHash(item.status.artifact.revision),
+ revision: shortenCommitHash(item.status.artifact?.revision ?? '-'),
119
created: timeAgo.format(new Date(item.metadata.creationTimestamp)),
120
};
121
}) ?? [];
0 commit comments