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 2512f55 commit c7e26b5Copy full SHA for c7e26b5
progress/internal/linear-progress.ts
@@ -42,7 +42,7 @@ export class LinearProgress extends Progress {
42
// Only display dots when visible - this prevents invisible infinite
43
// animation.
44
const hideDots =
45
- this.indeterminate || !hasBuffer || this.value >= this.max;
+ this.indeterminate || !hasBuffer || bufferValue >= this.max || this.value >= this.max;
46
return html`
47
<div class="dots" ?hidden=${hideDots}></div>
48
<div class="inactive-track" style=${styleMap(dotStyles)}></div>
0 commit comments