File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,7 @@ export class CdkStep {
67
67
68
68
/** The top level abstract control of the step. */
69
69
@Input ( )
70
- get stepControl ( ) { return this . _stepControl ; }
71
- set stepControl ( control : AbstractControl ) {
72
- this . _stepControl = control ;
73
- }
74
- private _stepControl : AbstractControl ;
70
+ stepControl : AbstractControl ;
75
71
76
72
/** Whether user has seen the expanded step content or not . */
77
73
interacted = false ;
@@ -106,7 +102,7 @@ export class CdkStep {
106
102
private _customCompleted : boolean | null = null ;
107
103
108
104
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 ;
110
106
}
111
107
112
108
constructor ( private _stepper : CdkStepper ) { }
You can’t perform that action at this time.
0 commit comments