From 273e5f3768fc8b302125c8277178398c5b36870f Mon Sep 17 00:00:00 2001 From: crisbeto Date: Mon, 14 Nov 2016 22:23:02 +0100 Subject: [PATCH] fix(input): error in IE on unsupported input types Fixes IE throwing a template error and stopping all rendering if an unsupported input type is set on an `md-input` instance. --- src/lib/input/input.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/input/input.html b/src/lib/input/input.html index 5b6924d94813..6b85d3ec7aaa 100644 --- a/src/lib/input/input.html +++ b/src/lib/input/input.html @@ -28,7 +28,7 @@ [spellcheck]="spellcheck" [attr.step]="step" [attr.tabindex]="tabindex" - [type]="type" + [attr.type]="type" [attr.name]="name" (focus)="_handleFocus($event)" (blur)="_handleBlur($event)"