Merge pull request #5958 from mabashian/5945-required-multiple-choice

Fixed single select required survey question bug
This commit is contained in:
Michael Abashian
2017-04-06 09:51:27 -04:00
committed by GitHub

View File

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