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-3131: Remove hover-over text next to "Effective call number" on the Item record detail view #2706

Merged
merged 1 commit into from
Jan 9, 2025
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 @@ -11,6 +11,7 @@
* Add call number browse settings. Refs UIIN-3116.
* Add "linked-data 1.0" interface to "optionalOkapiInterfaces". Refs UIIN-3166.
* Fix infinite loading animation after cancel edit/duplicate or 'Save & Close' consortial holdings/items. Fixes UIIN-3167.
* Remove hover-over text next to "Effective call number" on the Item record detail view. Refs UIIN-3131.

## [12.0.8](https://github.com/folio-org/ui-inventory/tree/v12.0.8) (2024-12-24)
[Full Changelog](https://github.com/folio-org/ui-inventory/compare/v12.0.7...v12.0.8)
Expand Down
5 changes: 0 additions & 5 deletions src/views/ItemView.js
Original file line number Diff line number Diff line change
Expand Up @@ -1143,11 +1143,6 @@ const ItemView = props => {
label={<FormattedMessage id="ui-inventory.effectiveCallNumber" />}
value={effectiveCallNumber(item)}
/>
<InfoPopover
iconSize="medium"
content={<FormattedMessage id="ui-inventory.info.effectiveCallNumber" />}
buttonProps={{ 'data-testid': 'info-icon-effective-call-number' }}
/>
</Layout>
</Col>
<Col xs={7}>
Expand Down
1 change: 0 additions & 1 deletion src/views/ItemView.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ describe('ItemView', () => {
});

it('should display the information icons', () => {
expect(screen.getAllByTestId('info-icon-effective-call-number')[0]).toBeDefined();
expect(screen.getAllByTestId('info-icon-shelving-order')[0]).toBeDefined();
});

Expand Down
1 change: 0 additions & 1 deletion translations/ui-inventory/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,6 @@
"administrativeNote": "Administrative note",
"administrativeNotes": "Administrative notes",
"linkedToMarcAuthority": "Linked to MARC authority",
"info.effectiveCallNumber": "This field contains the item call number, which is either inherited from the holdings record, or is the updated call number on the item record. While browsing call numbers, this field will be searched.",
"info.shelvingOrder": "This field is the normalized form of the call number which determines how the call number is sorted while browsing.",

"shortcut.nextSubfield": "quickMARC only: Move to the next subfield in a text box",
Expand Down
Loading