File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 8
8
* Move reusable version history hook useVersionHistoryValueResolvers to the ACQ lib. Refs UISACQCOMP-235.
9
9
* Move reusable claiming code from ` ui-receiving ` to the shared library. Refs UISACQCOMP-236.
10
10
* Support ` CLAIMS ` export type in the ` useIntegrationConfigs ` hook. Refs UISACQCOMP-238.
11
+ * Claim locations from all members for locations filter when ` crossTenant ` equals ` true ` . Refs UISACQCOMP-239.
11
12
12
13
## [ 6.0.2] ( https://github.com/folio-org/stripes-acq-components/tree/v6.0.2 ) (2024-12-04)
13
14
[ Full Changelog] ( https://github.com/folio-org/stripes-acq-components/compare/v6.0.1...v6.0.2 )
Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ const LocationFilterContainer = ({
19
19
isLoading,
20
20
} = useLocationsQuery ( {
21
21
consortium : crossTenant ,
22
- tenantId,
22
+ /*
23
+ Locations filter should ignore `tenantId` param when `crossTenant` equals `true` to be able to display valid references from all selected members.
24
+ */
25
+ tenantId : crossTenant ? undefined : tenantId ,
23
26
} ) ;
24
27
25
28
return (
You can’t perform that action at this time.
0 commit comments