MDL-67541 core_grades: Remove trailing space in max attribute value

This commit is contained in:
Jun Pataleta 2024-09-13 10:40:10 +08:00
parent fefd5fa37c
commit a5b433d0f4
No known key found for this signature in database
GPG Key ID: F83510526D99E2C7

View File

@ -29,7 +29,7 @@
<form>
<div class="mb-3">
<label for="core_grades-grade-{{uniqid}}">{{#str}}gradenoun, moodle{{/str}}</label>
<input class="form-control" type="number" name="grade" value="{{grade}}" id="core_grades-grade-{{uniqid}}" aria-describedby="core_grades-help-{{uniqid}}" min="0" max="{{maxgrade}} " step="any">
<input class="form-control" type="number" name="grade" value="{{grade}}" id="core_grades-grade-{{uniqid}}" aria-describedby="core_grades-help-{{uniqid}}" min="0" max="{{maxgrade}}" step="any">
<small id="core_grades-help-{{uniqid}}" class="form-text text-muted">{{#str}}grade_help, core_grades{{/str}}</small>
</div>
</form>