Skip to content

Commit

Permalink
Merge pull request #710 from vbaderks/recaptcha-setting-fix
Browse files Browse the repository at this point in the history
Change RecaptchaMinimumScore from input text to number to solve #706
  • Loading branch information
poppastring authored Jan 15, 2025
2 parents c484843 + 9ce0f16 commit 35da4fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/DasBlog.Web.UI/Views/Admin/Settings.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@

@Html.LabelFor(m => @Model.SiteConfig.RecaptchaMinimumScore, null, new { @class = "col-form-label col-sm-2" })
<div class="col-sm-2">
@Html.TextBoxFor(m => @Model.SiteConfig.RecaptchaMinimumScore, null, new { @class = "form-control sm-10" })
@Html.TextBoxFor(m => @Model.SiteConfig.RecaptchaMinimumScore, null, new { type = "number", step="0.1", @class = "form-control sm-10" })
</div>
@Html.ValidationMessageFor(m => m.SiteConfig.RecaptchaMinimumScore, null, new { @class = "text-danger" })

Expand Down

0 comments on commit 35da4fd

Please sign in to comment.