Fixes issue with too many " | " signs in error message [fixes SCI-459]

This commit is contained in:
Oleksii Kriuchykhin 2016-09-19 13:53:24 +02:00
parent 57563b9a18
commit 3f0a2c7dfc

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");
}
}
})
@ -149,4 +148,4 @@ function initEditComments(parent) {
}
});
});
}
}