Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Sadler committed Oct 19, 2020
2 parents 3252db9 + 6c41087 commit 75891c9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@{if (Model.Mandatory) { <text> data-val-required="@Model.RequiredErrorMessage" </text> }}
@{if (Model.Validate) { <text> data-val-regex="@Model.InvalidErrorMessage" data-regex="@Html.Raw(Model.Regex)" </text> }} />
<label>Confirm @Model.Caption</label>
<input type="text" name="@Model.Name" id="@confirmId" class="text" value="@values[1]" maxlength="500"
<input type="text" name="@Model.Name" id="@confirmId" class="text" value="@values[0]" maxlength="500"
@{if (string.IsNullOrEmpty(Model.PlaceholderText) == false) { <text> placeholder="Confirm @Model.PlaceholderText" </text> }}
data-val="true"
data-val-validateconfirminput="@invalidMessage"
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Builds/NuGet/ActiveIS.UmbracoForms.ConfirmInput.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>ActiveIS.UmbracoForms.ConfirmInput</id>
<version>1.0.0</version>
<version>1.0.1</version>
<title>ActiveIS.UmbracoForms.ConfirmInput</title>
<authors>ActiveIS</authors>
<owners>ActiveIS</owners>
Expand Down
2 changes: 1 addition & 1 deletion TestSite/App_Data/packages/createdPackages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="1" version="1.0.0" url="https://github.com/ActiveIS/ActiveIS.UmbracoForms.ConfirmInput" name="ActiveIS.UmbracoForms.ConfirmInput" packagePath="~/media/created-packages/ActiveIS.UmbracoForms.ConfirmInput_1.0.0.zip" iconUrl="" umbVersion="8.6.3" packageGuid="ea724e58-fc64-401b-b669-a27e0091d2b5" view="">
<package id="1" version="1.0.1" url="https://github.com/ActiveIS/ActiveIS.UmbracoForms.ConfirmInput" name="ActiveIS.UmbracoForms.ConfirmInput" packagePath="~/media/created-packages/ActiveIS.UmbracoForms.ConfirmInput_1.0.1.zip" iconUrl="" umbVersion="8.6.3" packageGuid="ea724e58-fc64-401b-b669-a27e0091d2b5" view="">
<license url="http://opensource.org/licenses/MIT"><![CDATA[MIT License]]></license>
<author url="https://activeis.net"><![CDATA[ActiveIS]]></author>
<contributors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@{if (Model.Mandatory) { <text> data-val-required="@Model.RequiredErrorMessage" </text> }}
@{if (Model.Validate) { <text> data-val-regex="@Model.InvalidErrorMessage" data-regex="@Html.Raw(Model.Regex)" </text> }} />
<label>Confirm @Model.Caption</label>
<input type="text" name="@Model.Name" id="@confirmId" class="text" value="@values[1]" maxlength="500"
<input type="text" name="@Model.Name" id="@confirmId" class="text" value="@values[0]" maxlength="500"
@{if (string.IsNullOrEmpty(Model.PlaceholderText) == false) { <text> placeholder="Confirm @Model.PlaceholderText" </text> }}
data-val="true"
data-val-validateconfirminput="@invalidMessage"
Expand Down

0 comments on commit 75891c9

Please sign in to comment.