Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mcartmel authored and scroix committed Apr 1, 2024
1 parent 5902d60 commit f3c7747
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 f3c7747

Please sign in to comment.