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 7ce6a58 commit 8836fe0Copy full SHA for 8836fe0
web-app/src/screens/Console/Common/ProgressBarWrapper/ProgressBarWrapper.tsx
@@ -73,7 +73,7 @@ const ProgressBarWrapper = ({
73
const propsComponent: ProgressBarProps = {
74
variant:
75
indeterminate && !ready && !cancelled ? "indeterminate" : "determinate",
76
- value: ready ? 100 : value,
+ value: ready && !error ? 100 : value,
77
color: color,
78
notificationLabel: notificationLabel || "",
79
};
0 commit comments