Skip to content

Commit

Permalink
Fix how index-value-search qps are passed
Browse files Browse the repository at this point in the history
  • Loading branch information
futa-ikeda committed Nov 5, 2024
1 parent a39b12c commit df1da66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ export default class InstitutionalObjectList extends Component<InstitutionalObje
return fullQueryOptions;
}

get valueSearchQueryOptions() {
const { defaultQueryOptions } = this.args;
return {
...defaultQueryOptions.cardSearchFilter,
};
}

@action
updateVisibleColumns() {
this.visibleColumns = [...this.dirtyVisibleColumns];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ as |list|>
{{#each list.relatedProperties as |property|}}
<SearchPage::FilterFacet
@cardSearchText={{this.cardSearchText}}
@cardSearchFilter={{this.queryOptions}}
@cardSearchFilter={{this.valueSearchQueryOptions}}
@property={{property}}
@toggleFilter={{queue this.toggleFilter (perform list.searchObjectsTask)}}
/>
Expand Down

0 comments on commit df1da66

Please sign in to comment.