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 10d55a1 commit 91f18b8Copy full SHA for 91f18b8
src/components/progress/base.ts
@@ -165,7 +165,7 @@ export abstract class IgcProgressBaseComponent extends LitElement {
165
const progress = this.max > 0 ? this.value / this.max : 0;
166
const percentage = progress * 100;
167
168
- if (percentage === this.percentage) return;
+ if (this.value !== 0 && percentage === this.percentage) return;
169
170
const wholeValue = percentage;
171
const integerValue = Math.floor(percentage);
0 commit comments