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 b3be38f commit 0e10637Copy full SHA for 0e10637
labextension/src/widgets/deploys-progress/DeployProgress.tsx
@@ -31,15 +31,15 @@ import DeployUtils from './DeployUtils';
31
32
// From kubeflow/pipelines repo
33
enum PipelineStatus {
34
- ERROR = 'Error',
35
- FAILED = 'Failed',
36
- PENDING = 'Pending',
37
- RUNNING = 'Running',
38
- SKIPPED = 'Skipped',
39
- SUCCEEDED = 'Succeeded',
40
- TERMINATING = 'Terminating',
41
- TERMINATED = 'Terminated',
42
- UNKNOWN = 'Unknown'
+ ERROR = 'ERROR',
+ FAILED = 'FAILED',
+ PENDING = 'PENDING',
+ RUNNING = 'RUNNING',
+ SKIPPED = 'SKIPPED',
+ SUCCEEDED = 'SUCCEEDED',
+ TERMINATING = 'TERMINATING',
+ TERMINATED = 'TERMINATED',
+ UNKNOWN = 'UNKNOWN'
43
}
44
45
interface IDeployProgressProps extends DeployProgressState {
0 commit comments