File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 4040 {
4141 "type" : " initial" ,
4242 "maximumWarning" : " 500kb" ,
43- "maximumError" : " 1mb "
43+ "maximumError" : " 2mb "
4444 },
4545 {
4646 "type" : " anyComponentStyle" ,
Original file line number Diff line number Diff line change 11import {
2+ AfterContentInit ,
23 AfterViewInit ,
34 ChangeDetectorRef ,
45 Component ,
@@ -102,7 +103,7 @@ import {
102103 </div>
103104 `
104105} )
105- export class TextInputLabelComponent implements AfterViewInit {
106+ export class TextInputLabelComponent implements AfterViewInit , AfterContentInit {
106107 /**
107108 * Used to build the id of the input item associated with the `Label`.
108109 */
@@ -210,6 +211,10 @@ export class TextInputLabelComponent implements AfterViewInit {
210211 }
211212 }
212213
214+ ngAfterContentInit ( ) {
215+ this . changeDetectorRef . detectChanges ( ) ;
216+ }
217+
213218 public isTemplate ( value ) {
214219 return value instanceof TemplateRef ;
215220 }
You can’t perform that action at this time.
0 commit comments