Fix terms registry
This commit is contained in:
parent
dc5ec2a938
commit
2c4f46bf3d
1 changed files with 1 additions and 1 deletions
|
|
@ -1422,7 +1422,7 @@
|
|||
this.getAllHiddenGlossaryList().forEach(
|
||||
function (item) {
|
||||
if (!this.hasItem(item) && this.isAutoGlossaryWord(item)) {
|
||||
if (likeFlag && !text.contains(item.name)) {
|
||||
if (likeFlag && !text.toLowerCase().contains(item.name.toLowerCase())) {
|
||||
return;
|
||||
}
|
||||
if (!likeFlag && text !== item.name) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue