Added site as filter option

This commit is contained in:
Andreas Varotsis 2024-07-15 11:16:21 +01:00 committed by GitHub
parent cf61b933d4
commit 6e8788beb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1641,6 +1641,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) {