From 739c80fed97b5563455f122b8e6f072458c1bee3 Mon Sep 17 00:00:00 2001 From: Ludvig Lundgren Date: Sat, 1 Jan 2022 22:08:23 +0100 Subject: [PATCH] fix(filters): use correct property for tags (#61) --- web/src/domain/interfaces.ts | 2 +- web/src/screens/filters/details.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/domain/interfaces.ts b/web/src/domain/interfaces.ts index c86409a..a4e6feb 100644 --- a/web/src/domain/interfaces.ts +++ b/web/src/domain/interfaces.ts @@ -91,7 +91,7 @@ export interface Filter { except_release_groups: string; match_categories: string; except_categories: string; - match_tags: string; + tags: string; except_tags: string; match_uploaders: string; except_uploaders: string; diff --git a/web/src/screens/filters/details.tsx b/web/src/screens/filters/details.tsx index 9c58f45..28271ae 100644 --- a/web/src/screens/filters/details.tsx +++ b/web/src/screens/filters/details.tsx @@ -241,7 +241,7 @@ export default function FilterDetails() { except_release_groups: data.except_release_groups, match_categories: data.match_categories, except_categories: data.except_categories, - match_tags: data.match_tags, + tags: data.tags, except_tags: data.except_tags, match_uploaders: data.match_uploaders, except_uploaders: data.except_uploaders, @@ -473,7 +473,7 @@ function Advanced() { - + )}