fix(filters): use correct property for tags (#61)

This commit is contained in:
Ludvig Lundgren 2022-01-01 22:08:23 +01:00 committed by GitHub
parent ae1f14d0a4
commit 739c80fed9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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() {
<TextField name="match_categories" label="Match categories" columns={6} placeholder="eg. *category*,category1" />
<TextField name="except_categories" label="Except categories" columns={6} placeholder="eg. *category*" />
<TextField name="match_tags" label="Match tags" columns={6} placeholder="eg. tag1,tag2" />
<TextField name="tags" label="Match tags" columns={6} placeholder="eg. tag1,tag2" />
<TextField name="except_tags" label="Except tags" columns={6} placeholder="eg. tag1,tag2" />
</div>
)}