Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
refactor(linear-progress): Set variable _indeterminate default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
trimox committed Jul 14, 2017
1 parent a594aa5 commit f7aaa52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/linear-progress/linear-progress.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { MDCLinearProgressFoundation } from '@material/linear-progress';
encapsulation: ViewEncapsulation.None
})
export class LinearProgressComponent implements AfterViewInit {
private _indeterminate: boolean = true;
private _indeterminate: boolean;
private _reversed: boolean;

@Input()
Expand Down

0 comments on commit f7aaa52

Please sign in to comment.