From 97a0ea4a316d949611fe99ee6a4d8de4f24f3f71 Mon Sep 17 00:00:00 2001 From: William Date: Thu, 6 Feb 2020 09:07:23 +1300 Subject: [PATCH] fix(templates): select volume name not object (#3549) --- app/portainer/views/templates/templates.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/portainer/views/templates/templates.html b/app/portainer/views/templates/templates.html index cae3ed752..357219b0f 100644 --- a/app/portainer/views/templates/templates.html +++ b/app/portainer/views/templates/templates.html @@ -239,7 +239,7 @@ id="container_volumes" class="form-control" placeholder="Select a volume" typeahead-min-length="0" - uib-typeahead="vol as vol.Name for vol in availableVolumes | filter:$viewValue" + uib-typeahead="vol.Name as vol.Name for vol in availableVolumes | filter:$viewValue" />