This commit is contained in:
Henry Jameson 2025-03-25 20:26:43 +02:00
commit c087e91a15
4 changed files with 10 additions and 7 deletions

View file

@ -15,6 +15,7 @@ export const muteFilterHits = (status) => {
if (statusText.includes(value) || statusSummary.includes(value)) {
return { hide, name }
}
break
}
case 'regexp': {
try {
@ -22,6 +23,7 @@ export const muteFilterHits = (status) => {
if (re.test(statusText) || re.test(statusSummary)) {
return { hide, name }
}
return false
} catch {
return false
}