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 fd34959 commit b13f01dCopy full SHA for b13f01d
src/Shared/Components/DeploymentStatusBreakdown/utils.tsx
@@ -121,10 +121,10 @@ const processKubeCTLApply = (
121
data: DeploymentStatusDetailsType,
122
) => {
123
const tableData: {
124
- currentPhase: DeploymentPhaseType | ''
+ currentPhase: DeploymentPhaseType | null
125
currentTableData: DeploymentStatusBreakdownItemType['subSteps']
126
} = {
127
- currentPhase: '',
+ currentPhase: null,
128
currentTableData: [{ icon: 'success', message: 'Started by Argo CD' }],
129
}
130
0 commit comments