Merge pull request #156 from okriuchykhin/ok_SCI-459

Fixes issue with too many " | " signs in error message [fixes SCI-459]
This commit is contained in:
okriuchykhin 2016-09-22 16:12:17 +02:00 committed by GitHub
commit 729cbef27b

View file

@ -121,9 +121,8 @@ function initEditComments(parent) {
$(".form-group", form)
.addClass("has-error");
$(".help-block", form)
.html(messageError[0])
.removeClass("hide")
.after(" |");
.html(messageError[0] + " |")
.removeClass("hide");
}
}
})