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

Release v10.0.5 #2353

Merged
merged 1 commit into from
Nov 23, 2023
Merged
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
Release v10.0.5
BogdanDenis committed Nov 22, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit d87333a08159451d22162aa5b07902fd819a939f
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -12,6 +12,10 @@
* Inactive Holdings/items on Central tenant when user have affiliation for separate Member with 0 permissions. Fixes UIIN-2689.
* Ignored hot key command on edit fields. Refs UIIN-2604.
* Don't render Fast Add record modal in a `<Paneset>` to re-calculate other `<Pane>`'s widths after closing. Fixes UIIN-2690.

## [10.0.5](https://github.com/folio-org/ui-inventory/tree/v10.0.5) (2023-11-22)
[Full Changelog](https://github.com/folio-org/ui-inventory/compare/v10.0.4...v10.0.5)

* Don't include `sort` parameter in requests to facets. Fixes UIIN-2685.

## [10.0.4](https://github.com/folio-org/ui-inventory/tree/v10.0.4) (2023-11-10)

Unchanged files with check annotations Beta

setSegmentSortBy = (sortBy) => {
const { segment } = this.props;
const segmentsSortBy = this.state.segmentsSortBy.map((key) => {

Check failure on line 655 in src/components/InstancesList/InstancesList.js

GitHub Actions / github-actions-ci

Use callback in setState when referencing the previous state

Check failure on line 655 in src/components/InstancesList/InstancesList.js

GitHub Actions / github-actions-ci

Use callback in setState when referencing the previous state
if (key.name === segment) {
key.sort = sortBy;
return key;