case insensitive download filter
This commit is contained in:
parent
39ecd3a3d6
commit
58fb00f9fd
|
@ -110,7 +110,8 @@ function(
|
|||
if (!d.files.length) return true;
|
||||
|
||||
return _.filter(d.files, function(f) {
|
||||
return f.path.search(filter) != -1;
|
||||
return f.path.toLowerCase().indexOf(filter.toLowerCase()) != -1;
|
||||
// return f.path.search(filter) != -1;
|
||||
}).length;
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user