Skip to content

Commit 8836fe0

Browse files
authored
Return proper progress on download error (#3211)
1 parent 7ce6a58 commit 8836fe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-app/src/screens/Console/Common/ProgressBarWrapper/ProgressBarWrapper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const ProgressBarWrapper = ({
7373
const propsComponent: ProgressBarProps = {
7474
variant:
7575
indeterminate && !ready && !cancelled ? "indeterminate" : "determinate",
76-
value: ready ? 100 : value,
76+
value: ready && !error ? 100 : value,
7777
color: color,
7878
notificationLabel: notificationLabel || "",
7979
};

0 commit comments

Comments
 (0)