We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f8c586f + 00e139e commit f8715c7Copy full SHA for f8715c7
js/methods.js
@@ -555,8 +555,8 @@ function RefreshLogData() {
555
//show logs
556
for (i = (arrData.length - 1); i > 0; i--) {
557
var totalText = arrData[i][1];
558
-
559
- if (filter.length <= 0 || totalText.indexOf(filter) >= 0) {
+ var lowerText = totalText.toLowerCase();
+ if (filter.length <= 0 || lowerText.indexOf(filter.toLowerCase()) >= 0) {
560
var res = totalText.split(" ");
561
text += "<font color='#8bc34a' style='padding-right:10px'>" + res[0] + " " + res[1] + " </font>";
562
totalText = totalText.replace(res[0] + " " + res[1], "")
0 commit comments