1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

feat(app): add driver name in the volume selector for container/service creation (#2534)

* Feat(containers): add driver name in the volume selector

* Feat(services): add driver name in the volume selector
This commit is contained in:
DevHugo 2019-01-16 23:28:40 +01:00 committed by Anthony Lapenna
parent fe63b4a156
commit 50a3b08209
2 changed files with 3 additions and 2 deletions

View file

@ -320,7 +320,7 @@
<span class="input-group-addon">volume</span>
<select class="form-control" ng-model="volume.name">
<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.Name">{{ vol.Name|truncate:30}} - {{ vol.Driver|truncate:30}}</option>
</select>
</div>
<!-- !volume -->