feat: add search filter for items with no photo (#383)

* feat: add search filter for items without photos

* chore: configure Golang formatter for VSCode

* fix: displaying long filter labels for some locales

* feat: add search filter for items with photos

* test: fix linter errors

* chore: remove redundant height attribute

* fix: make with/without photo filters mutually exclusive

---------

Co-authored-by: zebrapurring <>
This commit is contained in:
zebrapurring
2025-01-28 00:00:24 +01:00
committed by GitHub
parent 743be2fb2c
commit b22a49a0fd
6 changed files with 94 additions and 28 deletions

View File

@@ -24,6 +24,8 @@ export type ItemsQuery = {
locations?: string[];
labels?: string[];
negateLabels?: boolean;
onlyWithoutPhoto?: boolean;
onlyWithPhoto?: boolean;
parentIds?: string[];
q?: string;
fields?: string[];