Skip to content

Commit 0a3b593

Browse files
authored
Fix how index-value-search qps are passed (#2379)
1 parent a39b12c commit 0a3b593

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

app/institutions/dashboard/-components/object-list/component.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ export default class InstitutionalObjectList extends Component<InstitutionalObje
5757
return fullQueryOptions;
5858
}
5959

60+
get valueSearchQueryOptions() {
61+
const { defaultQueryOptions } = this.args;
62+
return {
63+
...defaultQueryOptions.cardSearchFilter,
64+
};
65+
}
66+
6067
@action
6168
updateVisibleColumns() {
6269
this.visibleColumns = [...this.dirtyVisibleColumns];

app/institutions/dashboard/-components/object-list/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ as |list|>
196196
{{#each list.relatedProperties as |property|}}
197197
<SearchPage::FilterFacet
198198
@cardSearchText={{this.cardSearchText}}
199-
@cardSearchFilter={{this.queryOptions}}
199+
@cardSearchFilter={{this.valueSearchQueryOptions}}
200200
@property={{property}}
201201
@toggleFilter={{queue this.toggleFilter (perform list.searchObjectsTask)}}
202202
/>

0 commit comments

Comments
 (0)