mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-29 03:43:16 +08:00
“A equals B” mail rules should be case insensitive along with the others #2115
This commit is contained in:
parent
8b57cb4c32
commit
b65b7d2817
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ export const Comparators = {
|
||||||
name: localized('equals'),
|
name: localized('equals'),
|
||||||
arrayMatchFn: Array.prototype.some,
|
arrayMatchFn: Array.prototype.some,
|
||||||
},
|
},
|
||||||
({ actual, desired }) => actual === desired
|
({ actual, desired }) => actual.toLowerCase() === desired.toLowerCase()
|
||||||
),
|
),
|
||||||
|
|
||||||
matchesExpression: new Comparator(
|
matchesExpression: new Comparator(
|
||||||
|
|
Loading…
Reference in a new issue