Skip to content

Commit 6347829

Browse files
committed
refactor(material/form-field): fix incorrectly named mixin base constant
With the recent changes to the mixins, a typo has sneaked into the form-field mixin logic. This commit fixes that.
1 parent 89c8474 commit 6347829

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/material/form-field/form-field.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const outlineGapPadding = 5;
6161
* Boilerplate for applying mixins to MatFormField.
6262
* @docs-private
6363
*/
64-
const _MatFormFieldnBase = mixinColor(class {
64+
const _MatFormFieldBase = mixinColor(class {
6565
constructor(public _elementRef: ElementRef) {}
6666
}, 'primary');
6767

@@ -147,7 +147,7 @@ export const MAT_FORM_FIELD = new InjectionToken<MatFormField>('MatFormField');
147147
]
148148
})
149149

150-
export class MatFormField extends _MatFormFieldnBase
150+
export class MatFormField extends _MatFormFieldBase
151151
implements AfterContentInit, AfterContentChecked, AfterViewInit, OnDestroy, CanColor {
152152

153153
/**

0 commit comments

Comments
 (0)