File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -235,14 +235,14 @@ export class MatFormField extends _MatFormFieldMixinBase
235
235
* @deprecated
236
236
* @breaking -change 8.0.0
237
237
*/
238
- @ViewChild ( 'underline' ) underlineRef : ElementRef ;
239
-
240
- @ViewChild ( 'connectionContainer' ) _connectionContainerRef : ElementRef ;
241
- @ViewChild ( 'inputContainer' ) _inputContainerRef : ElementRef ;
242
- @ViewChild ( 'label' ) private _label : ElementRef ;
243
- @ContentChild ( MatFormFieldControl ) _control : MatFormFieldControl < any > ;
244
- @ContentChild ( MatPlaceholder ) _placeholderChild : MatPlaceholder ;
245
- @ContentChild ( MatLabel ) _labelChild : MatLabel ;
238
+ @ViewChild ( 'underline' , { static : false } ) underlineRef : ElementRef ;
239
+
240
+ @ViewChild ( 'connectionContainer' , { static : true } ) _connectionContainerRef : ElementRef ;
241
+ @ViewChild ( 'inputContainer' , { static : false } ) _inputContainerRef : ElementRef ;
242
+ @ViewChild ( 'label' , { static : false } ) private _label : ElementRef ;
243
+ @ContentChild ( MatFormFieldControl , { static : false } ) _control : MatFormFieldControl < any > ;
244
+ @ContentChild ( MatPlaceholder , { static : false } ) _placeholderChild : MatPlaceholder ;
245
+ @ContentChild ( MatLabel , { static : false } ) _labelChild : MatLabel ;
246
246
@ContentChildren ( MatError ) _errorChildren : QueryList < MatError > ;
247
247
@ContentChildren ( MatHint ) _hintChildren : QueryList < MatHint > ;
248
248
@ContentChildren ( MatPrefix ) _prefixChildren : QueryList < MatPrefix > ;
You can’t perform that action at this time.
0 commit comments