Skip to content

Commit

Permalink
UIIN-2274: Revert back to 'all' operator for title (All) index (#1895)
Browse files Browse the repository at this point in the history
* UIIN-2274: Revert back to '=' operator for title (All) index

* Use all operator
  • Loading branch information
mkuklis committed Dec 8, 2022
1 parent 6b14f7d commit 0e9eeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filterConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const instanceIndexes = [
// but, without tracing the use of the value, I don't know what effects that would have in the code.
{ label: 'ui-inventory.search.all', value: 'all', queryTemplate: 'keyword all "%{query.query}" or isbn="%{query.query}" or hrid=="%{query.query}" or id=="%{query.query}"' },
{ label: 'ui-inventory.contributor', value: 'contributor', queryTemplate: 'contributors.name="%{query.query}"' },
{ label: 'ui-inventory.title', value: 'title', queryTemplate: 'title == "%{query.query}"' },
{ label: 'ui-inventory.title', value: 'title', queryTemplate: 'title all "%{query.query}"' },
{ label: 'ui-inventory.identifierAll', value: 'identifier', queryTemplate: 'identifiers.value="%{query.query}" or isbn="%{query.query}"' },
{ label: 'ui-inventory.isbn', value: 'isbn', queryTemplate: 'isbn="%{query.query}"' },
{ label: 'ui-inventory.issn', value: 'issn', queryTemplate: 'issn="%{query.query}"' },
Expand Down

0 comments on commit 0e9eeeb

Please sign in to comment.