Skip to content

Commit 5a0243a

Browse files
committed
allow event filter on Replays page
1 parent 9375b9a commit 5a0243a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/input/FilterEditForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function FilterEditForm({ websiteId, onChange, onClose }: FilterEditFormP
2828
const [currentMatch, setCurrentMatch] = useState<string>(match || 'all');
2929
const { isMobile } = useMobile();
3030
const excludeFilters = pathname.includes('/pixels') || pathname.includes('/links');
31-
const excludeEvent = !pathname.endsWith('/events');
31+
const excludeEvent = !pathname.endsWith('/events') && !pathname.endsWith('/replays');
3232

3333
const handleReset = () => {
3434
setCurrentFilters([]);

0 commit comments

Comments
 (0)