mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-04 06:36:27 +08:00
Fixes issue with too many " | " signs in error message [fixes SCI-459]
This commit is contained in:
parent
57563b9a18
commit
3f0a2c7dfc
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");
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -149,4 +148,4 @@ function initEditComments(parent) {
|
|||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue