Fixed bug where single select multiple choice survey questions that are required leave the form permanently disabled.

This commit is contained in:
Michael Abashian
2017-04-05 12:37:07 -04:00
parent 65dd84ed92
commit 7b5e70a45e

View File

@@ -1390,7 +1390,7 @@ function(ConfigurationUtils, i18n, $rootScope) {
} }
} }
else { else {
return false; return (!value || value === "") ? false : true;
} }
}; };
} }