Correct bug
This commit is contained in:
parent
4bac080418
commit
c5f4a11b12
3 changed files with 12 additions and 9 deletions
|
@ -16,20 +16,20 @@
|
|||
<div class="form-group">
|
||||
<label class="control-label col-sm-2">Name</label>
|
||||
<div class="col-sm-20">
|
||||
<input type="text" ng-model="data.name" value="{{ image.name}}"/>
|
||||
<input type="text" ng-model="data.name" value="{{ data.name}}"/>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<fieldset class="form-group">
|
||||
<label class="control-label col-sm-2">Visibility</label>
|
||||
<select class="col-sm-20" id="visibilitySelected" ng-model="data.visibility">
|
||||
<option ng-repeat="visibility in axioms.visibility" ng-selected="image.visibility == visibility">{{ visibility}}</option>
|
||||
<select class="col-sm-20" ng-model="data.visibility">
|
||||
<option ng-repeat="visibility in axioms.visibility" ng-selected="data.visibility == visibility">{{ visibility}}</option>
|
||||
</select>
|
||||
</fieldset>
|
||||
<fieldset class="form-group">
|
||||
<label class="control-label col-sm-2">Protected</label>
|
||||
<select class="col-sm-20" id="protectedSelected" ng-model="data.protected">
|
||||
<option ng-repeat="protected in axioms.protected" ng-selected="image.protected == protected">{{ protected}}</option>
|
||||
<select class="col-sm-20" ng-model="data.protected">
|
||||
<option ng-repeat="protect in axioms.protected" ng-selected="data.protected == protect">{{ protect }}</option>
|
||||
</select>
|
||||
</fieldset>
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
|||
<input type="hidden" name="token" value="{{ getToken()}}" />
|
||||
<input type="hidden" name="action" value="uploadImage" />
|
||||
|
||||
<input type="hidden" name="id" value="{{ image.id}}" />
|
||||
<input type="hidden" name="id" value="{{ data.id}}" />
|
||||
<input type="hidden" name="file_name" value="cirros-0.3.4-x86_64-disk.img" />
|
||||
<fieldset class="form-group">
|
||||
<label class="control-label col-sm-2">Upload</label>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue