Fix: Incorrect word filter regex for status variables
This commit is contained in:
parent
a6638a3c08
commit
dd36db9ca9
@ -394,7 +394,7 @@ $(function() {
|
||||
if (word.length == 0) {
|
||||
textFilter = null;
|
||||
}
|
||||
else textFilter = new RegExp("(^|_)" + word, 'i');
|
||||
else textFilter = new RegExp("(^| )" + word, 'i');
|
||||
|
||||
text = word;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user