Skip to content

Commit

Permalink
Reverted back changes in numeric editor templates' inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mariannk committed Sep 5, 2017
1 parent 7e817cc commit a7563dc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@model Decimal
<input asp-for="@Model" type="number"/>
<input asp-for="@Model"/>
@{
var postfix = "";
if (ViewData.ContainsKey("postfix") && ViewData["postfix"] != null)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@model Decimal?
<input asp-for="@Model" type="number"/>
<input asp-for="@Model"/>
@{
var postfix = "";
if (ViewData.ContainsKey("postfix") && ViewData["postfix"] != null)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@model Double
<input asp-for="@Model" type="number" />
<input asp-for="@Model"/>
@{
var postfix = "";
if (ViewData.ContainsKey("postfix") && ViewData["postfix"] != null)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@model Int32
<input asp-for="@Model" type="number"/>
<input asp-for="@Model"/>
@{
var postfix = "";
if (ViewData.ContainsKey("postfix") && ViewData["postfix"] != null)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@model Int32?
<input asp-for="@Model" type="number" />
<input asp-for="@Model"/>
@{
var postfix = "";
if (ViewData.ContainsKey("postfix") && ViewData["postfix"] != null)
Expand Down

0 comments on commit a7563dc

Please sign in to comment.