From e20aca0716fe982e381226637d7655e1a2925afb Mon Sep 17 00:00:00 2001 From: Anurag Awasthi Date: Thu, 3 Jan 2019 15:56:07 +0530 Subject: [PATCH] ui: use executable template filter for users This uses the `executable` tempalte filter for fetching templates in reinstall VM form, otherwise not all allowable templates were being listed. Signed-off-by: Rohit Yadav --- ui/scripts/instances.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/instances.js b/ui/scripts/instances.js index 7a959dff11c1..515c19abd11f 100644 --- a/ui/scripts/instances.js +++ b/ui/scripts/instances.js @@ -1024,7 +1024,7 @@ label: 'label.select.a.template', select: function(args) { var data = { - templatefilter: 'featured' + templatefilter: 'executable' }; $.ajax({ url: createURL('listTemplates'),