mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-05 18:32:30 +01:00
Make element picker mind that network filters are case-insensitive
Related discussion: - https://github.com/easylist/easylist/pull/4950#issuecomment-590064744
This commit is contained in:
parent
c13060aadc
commit
7634604aa8
@ -738,7 +738,7 @@ const filterToDOMInterface = (( ) => {
|
||||
}
|
||||
let reFilter = null;
|
||||
try {
|
||||
reFilter = new RegExp(reStr);
|
||||
reFilter = new RegExp(reStr, 'i');
|
||||
}
|
||||
catch (e) {
|
||||
return out;
|
||||
|
Loading…
Reference in New Issue
Block a user