File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,7 @@ export class CdkStep {
6767
6868 /** The top level abstract control of the step. */
6969 @Input ( )
70- get stepControl ( ) { return this . _stepControl ; }
71- set stepControl ( control : AbstractControl ) {
72- this . _stepControl = control ;
73- }
74- private _stepControl : AbstractControl ;
70+ stepControl : AbstractControl ;
7571
7672 /** Whether user has seen the expanded step content or not . */
7773 interacted = false ;
@@ -106,7 +102,7 @@ export class CdkStep {
106102 private _customCompleted : boolean | null = null ;
107103
108104 private get _defaultCompleted ( ) {
109- return this . _stepControl ? this . _stepControl . valid && this . interacted : this . interacted ;
105+ return this . stepControl ? this . stepControl . valid && this . interacted : this . interacted ;
110106 }
111107
112108 constructor ( private _stepper : CdkStepper ) { }
You can’t perform that action at this time.
0 commit comments