Skip to content

Commit 047fa0a

Browse files
committed
Fix attribute case sensitivity
1 parent b2a375e commit 047fa0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function toLower(str) {
77
}
88

99
export function createAttributeFilter(ns, name) {
10-
return o => o.ns===ns && o.name===toLower(name);
10+
return o => o.ns===ns && toLower(o.name)===toLower(name);
1111
}
1212

1313
export function splice(arr, item, add, byValueOnly) {

0 commit comments

Comments
 (0)