1
0
mirror of https://github.com/bingohuang/docker-labs.git synced 2025-10-04 17:33:21 +08:00

Added setting to allow specification of new instance image

This commit is contained in:
Michael Irwin
2017-04-11 17:58:15 -04:00
parent 38c97cf100
commit 3b86c79c5b
2 changed files with 66 additions and 3 deletions

View File

@@ -149,6 +149,18 @@
</div>
</div>
</div>
<div layout="row">
<div flex="50">
<md-input-container class="md-block" flex-gt-sm>
<label>Instance Image</label>
<md-select ng-model="$ctrl.currentDesiredInstanceImage" ng-model-options="{getterSetter: true}" placeholder="New Instance Image">
<md-option ng-repeat="image in $ctrl.instanceImages" value="{{image}}">
{{ image }}
</md-option>
</md-select>
</md-input-container>
</div>
</div>
</div>
</md-dialog-content>
@@ -187,3 +199,4 @@
</script>
</body>
</html>