From c2c47328df4ece5aca74f449ab41f9d5730a7152 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Thu, 11 Dec 2014 16:01:26 -0500 Subject: [PATCH] Survey taker float required error field adding the div for the float required error field --- awx/ui/static/js/helpers/JobSubmission.js | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/ui/static/js/helpers/JobSubmission.js b/awx/ui/static/js/helpers/JobSubmission.js index f71bbdc893..d5830938c9 100644 --- a/awx/ui/static/js/helpers/JobSubmission.js +++ b/awx/ui/static/js/helpers/JobSubmission.js @@ -550,6 +550,7 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi max = (!Empty(question.max)) ? question.max : "" ; defaultValue = (!Empty(question.default)) ? question.default : (!Empty(question.default_float)) ? question.default_float : "" ; html+=''+ + '
A value is required!
'+ '
This is not valid float!
'+ '
The value must be in range {{'+min+'}} to {{'+max+'}}!
'; }