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-2815: Pass current tenantId when open holding details during moving holdings/items #2427

Merged
merged 3 commits into from
Apr 1, 2024
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 @@ -10,6 +10,7 @@
* Keep query and results list when switching Browse options. Refs UIIN-2802.
* Set central tenant id in the request when Member tenant deletes a shared record. Fixes UIIN-2784.
* Apply staff suppress filter for first search in Holdings/Items. Fixes UIIN-2814.
* Pass tenantId when open holding details during moving holdings/items. Fixes UIIN-2815.

## [11.0.0](https://github.com/folio-org/ui-inventory/tree/v11.0.0) (2024-03-21)
[Full Changelog](https://github.com/folio-org/ui-inventory/compare/v10.0.11...v11.0.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,11 @@ import React, {
import PropTypes from 'prop-types';

import { Droppable } from 'react-beautiful-dnd';
import {
useStripes,
} from '@folio/stripes/core';
import { useStripes } from '@folio/stripes/core';

import DnDContext from '../../DnDContext';
import {
InstanceDetails,
} from '../../InstanceDetails';
import {
HoldingsListContainer,
} from '../../HoldingsList';
import { InstanceDetails } from '../../InstanceDetails';
import { HoldingsListContainer } from '../../HoldingsList';

import InstanceMovementDetailsActions from './InstanceMovementDetailsActions';

Expand Down Expand Up @@ -79,6 +73,7 @@ const InstanceMovementDetails = ({
isHoldingsMove={canMoveHoldings}
draggable={canMoveItems}
droppable={canMoveItems}
tenantId={stripes.okapi.tenant}
/>

{provided.placeholder}
Expand Down
Loading