1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

fix(service-creation): fix an issue when selecting a volume from available volumes (#963)

This commit is contained in:
Anthony Lapenna 2017-06-29 07:41:37 +02:00 committed by GitHub
parent b57bfe3eee
commit 1168e94534

View file

@ -242,7 +242,7 @@
<span class="input-group-addon">volume</span>
<select class="form-control" ng-model="volume.Source">
<option selected disabled hidden value="">Select a volume</option>
<option ng-repeat="vol in availableVolumes" ng-value="vol.Name">{{ vol.Name|truncate:30}}</option>
<option ng-repeat="vol in availableVolumes" ng-value="vol.Id">{{ vol.Id|truncate:30 }}</option>
</select>
</div>
<!-- !volume -->