Make fields in image edit required

Make the min_disk and min_ram fields in the image edit form required,
so that the form can't be submitted with empty values for those fields,
which always results in an error.

Change-Id: I5a3fdb74f127ed1d084ac7b47dfd6e0d8b076a1c
Closes-Bug: #1755958
This commit is contained in:
pengyuesheng 2018-04-13 11:29:09 +08:00
parent 35ac8aac77
commit f843b6389f
1 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,7 @@
<label class="control-label" for="imageForm-min_disk" translate>Minimum Disk (GB)</label>
<input id="imageForm-min_disk" name="min_disk"
type="number" class="form-control"
ng-required="true"
ng-pattern="ctrl.validationRules.integer" ng-model="ctrl.image.min_disk"
placeholder="{$ 'The minimum disk size required to boot the image. If unspecified, this value defaults to 0 (no minimum).'|translate $}">
</div>
@ -102,6 +103,7 @@
<label class="control-label required" translate>Minimum RAM (MB)</label>
<input id="imageForm-min_ram" name="min_ram"
type="number" class="form-control"
ng-required="true"
ng-pattern="ctrl.validationRules.integer" ng-model="ctrl.image.min_ram"
placeholder="{$ 'The minimum memory size required to boot the image. If unspecified, this value defaults to 0 (no minimum).'|translate $}">
</div>