Skip to content

Commit bd4876c

Browse files
committed
fix(linear-progress): set non-zero default value
1 parent 8cd451a commit bd4876c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/data-display/linear-progressbar/linear-dynamic-sample/linear-dynamic-sample.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export class LinearDynamicSampleComponent implements OnInit{
1010
public currentValue: number;
1111

1212
public ngOnInit() {
13-
this.currentValue = 0;
13+
this.currentValue = 50;
1414
}
1515

1616
public incrementProgress() {

0 commit comments

Comments
 (0)