From bd12efd7fe93076553882da8286ec634126d4ad7 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Thu, 8 Jan 2015 09:43:15 -0500 Subject: [PATCH] Radio button on modal window fixed a lookup modal from having checkboxes when it needed radio buttons --- awx/ui/static/js/helpers/inventory.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/inventory.js b/awx/ui/static/js/helpers/inventory.js index cd237623aa..c7c3184c6f 100644 --- a/awx/ui/static/js/helpers/inventory.js +++ b/awx/ui/static/js/helpers/inventory.js @@ -323,7 +323,8 @@ angular.module('InventoryHelper', ['RestServices', 'Utilities', 'OrganizationLis form: form, current_item: scope.organization, list: OrganizationList, - field: 'organization' + field: 'organization', + input_type: 'radio' }); scope.$emit('inventoryPropertiesLoaded');