From 7b9a6a4bb871bbc650f560e08ec1d7c059c7c85c Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Thu, 11 Dec 2014 15:42:26 -0500 Subject: [PATCH] float's weren't required for survey taker accidentally goofed up the expression for ng-required for floats on survey maker. --- awx/ui/static/js/helpers/JobSubmission.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/JobSubmission.js b/awx/ui/static/js/helpers/JobSubmission.js index 65bee2a226..f71bbdc893 100644 --- a/awx/ui/static/js/helpers/JobSubmission.js +++ b/awx/ui/static/js/helpers/JobSubmission.js @@ -549,7 +549,7 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi min = (!Empty(question.min)) ? question.min : ""; max = (!Empty(question.max)) ? question.max : "" ; defaultValue = (!Empty(question.default)) ? question.default : (!Empty(question.default_float)) ? question.default_float : "" ; - html+=''+ + html+=''+ '
This is not valid float!
'+ '
The value must be in range {{'+min+'}} to {{'+max+'}}!
'; }