Fix regression from previous commit
This commit is contained in:
parent
18519b0612
commit
6210de95e3
|
|
@ -43,7 +43,10 @@ namespace Microsoft.AspNet.Mvc.TagHelpers
|
|||
{ nameof(UInt32), "number" },
|
||||
{ nameof(Int64), "number" },
|
||||
{ nameof(UInt64), "number" },
|
||||
{ nameof(Single), InputType.Text.ToString().ToLowerInvariant() },
|
||||
{ nameof(Double), InputType.Text.ToString().ToLowerInvariant() },
|
||||
{ nameof(Boolean), InputType.CheckBox.ToString().ToLowerInvariant() },
|
||||
{ nameof(Decimal), InputType.Text.ToString().ToLowerInvariant() },
|
||||
{ nameof(String), InputType.Text.ToString().ToLowerInvariant() },
|
||||
{ nameof(IFormFile), "file" },
|
||||
{ TemplateRenderer.IEnumerableOfIFormFileName, "file" },
|
||||
|
|
|
|||
|
|
@ -731,7 +731,7 @@ namespace Microsoft.AspNet.Mvc.TagHelpers
|
|||
{ "datetime", null, "datetime" },
|
||||
{ "datetime-local", null, "datetime-local" },
|
||||
{ "DATETIME-local", null, "datetime-local" },
|
||||
{ "Decimal", null, "text" },
|
||||
{ "Decimal", "{0:0.00}", "text" },
|
||||
{ "Double", null, "text" },
|
||||
{ "Int16", null, "number" },
|
||||
{ "Int32", null, "number" },
|
||||
|
|
|
|||
Loading…
Reference in New Issue