Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UIIN-2677 Fix misspelled Instance notes (all) advanced search query index. #2338

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading