This commit is contained in:
Andreas Varotsis 2024-11-25 16:40:51 +13:00 committed by GitHub
commit 5db3531608
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1638,6 +1638,9 @@ export const filterItemEvents = (
return event[key]?.toLowerCase().includes(lowercasedValue)
})
}
case 'url': {
return event.originalUrl?.toLowerCase() === lowercasedValue
}
case 'includes': {
const ids = lowercasedValue.split(',')
if (!ids || ids.length === 0) {