From 3749f3e2e5e80de0637188fca949fd90b2a95ceb Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 25 Apr 2017 19:16:43 +0200 Subject: [PATCH] Fixed missing icon preventing detailed explanation validation errors explanations from appearing. --- src/UI/jQuery/jquery.validation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/UI/jQuery/jquery.validation.js b/src/UI/jQuery/jquery.validation.js index 18cdd2f51..f5b141008 100644 --- a/src/UI/jQuery/jquery.validation.js +++ b/src/UI/jQuery/jquery.validation.js @@ -92,9 +92,9 @@ module.exports = function() { if (error.infoLink) { if (error.detailedDescription) { - errorMessage += ' '; + errorMessage += ' '; } else { - errorMessage += ' '; + errorMessage += ' '; } } else if (error.detailedDescription) { errorMessage += ' ';