Skip to content

Commit b0dc418

Browse files
densumeshcdxker
authored andcommitted
bugfix: ensure that tracking ids are filtering correctly
1 parent 82fe335 commit b0dc418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontends/search/src/components/FilterModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ export const FilterItem = (props: FilterItemProps) => {
159159
ids: null,
160160
tracking_ids: idFilterText(),
161161
} as HasIdFilter);
162+
filterIsHasIdFilter(curFilter());
162163
} else {
163164
if (curFieldFilter?.match_all?.length) {
164165
setTempFilterMode("match_all");
@@ -717,7 +718,6 @@ export const FilterItem = (props: FilterItemProps) => {
717718
placeholder="h1, h2, h3"
718719
class="rounded-md border border-neutral-400 bg-neutral-100 p-1 dark:border-neutral-900 dark:bg-neutral-800"
719720
onChange={(e) => {
720-
console.log("setIdFilterText");
721721
setIdFilterText(e.currentTarget.value.split(","));
722722
}}
723723
value={idFilterText()}

0 commit comments

Comments
 (0)