Skip to content

Commit

Permalink
Fix for #187
Browse files Browse the repository at this point in the history
  • Loading branch information
mcartmel committed Jul 3, 2020
1 parent f750b9a commit 812ce7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodel-webui-js/src/nodel.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ $.views.helpers({
},
srcflt: function(item, i, items) {
if(this.view.data.flt) {
return (item[this.props.srch].search(encodr(this.view.data.flt)) !== -1) && item.seq != 0;
return (item[this.props.srch].toLocaleLowerCase().indexOf(encodr(this.view.data.flt.toLocaleLowerCase())) !== -1) && item.seq != 0;
}
else return item.seq != 0;
},
Expand Down

0 comments on commit 812ce7e

Please sign in to comment.