From 370316b535f01c4c6c8bfa5bf1c5e04c35d6a83a Mon Sep 17 00:00:00 2001 From: Andrew Seguin Date: Fri, 11 Aug 2017 09:58:25 -0700 Subject: [PATCH] compat(autosize): fix input name --- src/lib/input/autosize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/input/autosize.ts b/src/lib/input/autosize.ts index 9a6177b22c2f..e2b7474e5099 100644 --- a/src/lib/input/autosize.ts +++ b/src/lib/input/autosize.ts @@ -47,7 +47,7 @@ export class MdTextareaAutosize implements AfterViewInit { this._setMaxHeight(); } - @Input('matAutosizeMaxRows') + @Input('matAutosizeMinRows') get _matAutosizeMinRows() { return this.minRows; } set _matAutosizeMinRows(v) { this.minRows = v; }