From 7b5e70a45e663777599a961d02671018227d9f0d Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Wed, 5 Apr 2017 12:37:07 -0400 Subject: [PATCH] Fixed bug where single select multiple choice survey questions that are required leave the form permanently disabled. --- awx/ui/client/src/shared/directives.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/shared/directives.js b/awx/ui/client/src/shared/directives.js index 3531e78f0b..fc4fbc4cdb 100644 --- a/awx/ui/client/src/shared/directives.js +++ b/awx/ui/client/src/shared/directives.js @@ -1390,7 +1390,7 @@ function(ConfigurationUtils, i18n, $rootScope) { } } else { - return false; + return (!value || value === "") ? false : true; } }; }