Skip to content

Commit 5a86587

Browse files
committed
EntityServerAPIWrapper.getCrossFolderSelectionResult: remove useSnapshotSelection argument
1 parent ff6688c commit 5a86587

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

packages/components/releaseNotes/components.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Components, models, actions, and utility functions for LabKey applications and p
1616
- Add props: aliquots, sampleOperation, editStatusData
1717
- Render errors
1818
- QueryAPIWrapper: remove getSelection
19+
- EntityServerAPIWrapper.getCrossFolderSelectionResult: remove useSnapshotSelection argument
1920

2021
### version 6.58.6
2122
*Released*: 26 August 2025

packages/components/src/internal/components/entities/APIWrapper.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export interface EntityAPIWrapper {
4848
getCrossFolderSelectionResult: (
4949
dataRegionSelectionKey: string,
5050
dataType: string, // 'samples' | 'exp.data' | 'assay',
51-
useSnapshotSelection?: boolean,
5251
rowIds?: string[] | number[],
5352
picklistName?: string
5453
) => Promise<CrossFolderSelectionResult>;

packages/components/src/internal/components/entities/actions.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,6 @@ export function getDataOperationConfirmationData(
755755
export function getCrossFolderSelectionResult(
756756
dataRegionSelectionKey: string,
757757
dataType: string, // 'samples' | 'exp.data' | 'assay',
758-
useSnapshotSelection?: boolean,
759758
rowIds?: number[] | string[],
760759
picklistName?: string
761760
): Promise<CrossFolderSelectionResult> {
@@ -772,7 +771,6 @@ export function getCrossFolderSelectionResult(
772771
rowIds,
773772
dataType,
774773
picklistName,
775-
useSnapshotSelection,
776774
},
777775
success: Utils.getCallbackWrapper(response => {
778776
if (response.success) {

0 commit comments

Comments
 (0)