Skip to content

Commit

Permalink
UIIN-2677 Fix misspelled Instance notes (all) advanced search query i…
Browse files Browse the repository at this point in the history
…ndex. (#2338)
  • Loading branch information
BogdanDenis authored Nov 8, 2023
1 parent 846085d commit 864ac3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* ECS: Show info message when user in member tenant tries to view shared instance details without permission. Refs UIIN-2590.
* Show only local MARC Authorities when share local instance. Fixes UIIN-2647.
* Single instance export - MARC files sent to central tenant from member tenant. Fixes UIIN-2613.
* Fix misspelled Instance notes (all) advanced search query index. Fixes UIIN-2677.

## [10.0.2](https://github.com/folio-org/ui-inventory/tree/v10.0.2) (2023-11-07)
[Full Changelog](https://github.com/folio-org/ui-inventory/compare/v10.0.1...v10.0.2)
Expand Down
2 changes: 1 addition & 1 deletion src/filterConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const advancedSearchIndexes = {
{ label: 'ui-inventory.isbn', value: 'isbn' },
{ label: 'ui-inventory.issn', value: 'issn' },
{ label: 'ui-inventory.search.oclc', value: 'oclc' },
{ label: 'ui-inventory.search.instanceNotes', value: 'isntanceNotes' },
{ label: 'ui-inventory.search.instanceNotes', value: 'instanceNotes' },
{ label: 'ui-inventory.search.instanceAdministrativeNotes', value: 'instanceAdministrativeNotes' },
{ label: 'ui-inventory.subject', value: 'subject' },
{ label: 'ui-inventory.effectiveCallNumberShelving', value: 'callNumber' },
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useInstanceMutation/useInstanceMutation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('useInstanceMutation', () => {
{ wrapper },
);

await act(async () => { result.current.mutateInstance({ id: 'isntanceId' }); });
await act(async () => { result.current.mutateInstance({ id: 'instanceId' }); });

expect(putMock).toHaveBeenCalled();
});
Expand Down

0 comments on commit 864ac3d

Please sign in to comment.