You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
@Html.ValidationSummary() and div validation-summary="All"/> currently generate
<divclass="validation-summary-errors" data-valmsg-summary="true"><ul><li>Something happened with your model.</li><li>Something happened with field Property1.</li></ul></div>
Should instead generate
<divclass="validation-summary-errors" data-valmsg-summary="true"><ul><li><label>Something happened with your model.</label></li><li><labelfor="Property1">Something happened with Property1.</label></li></ul></div>
The <label/> wrapping for model-level errors ensures the default styles are consistent.
See original MVC 5.2 request for more details.