From a3f2d1436e8078dff8ca758d2d17103f494a129a Mon Sep 17 00:00:00 2001 From: CJ <72030708+cj12312021@users.noreply.github.com> Date: Tue, 16 Sep 2025 19:11:17 -0500 Subject: [PATCH] fix typo with gallery_count --- ui/v2.5/src/components/List/Filters/LabeledIdFilter.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/v2.5/src/components/List/Filters/LabeledIdFilter.tsx b/ui/v2.5/src/components/List/Filters/LabeledIdFilter.tsx index a982ea8ad..1bca96d84 100644 --- a/ui/v2.5/src/components/List/Filters/LabeledIdFilter.tsx +++ b/ui/v2.5/src/components/List/Filters/LabeledIdFilter.tsx @@ -520,7 +520,7 @@ interface IFilterType { performers_filter?: InputMaybe; performer_count?: InputMaybe; galleries_filter?: InputMaybe; - galleries_count?: InputMaybe; + gallery_count?: InputMaybe; } export function setObjectFilter( @@ -554,7 +554,7 @@ export function setObjectFilter( case FilterMode.Galleries: // if empty, only get objects with performers if (empty) { - out.galleries_count = { + out.gallery_count = { modifier: CriterionModifier.GreaterThan, value: 0, };