mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
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:
commit
729cbef27b
1 changed files with 3 additions and 4 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue