Skip to content
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
4 changes: 2 additions & 2 deletions packages/components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/components",
"version": "6.58.1",
"version": "6.58.2",
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
"sideEffects": false,
"files": [
Expand Down
4 changes: 4 additions & 0 deletions packages/components/releaseNotes/components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# @labkey/components
Components, models, actions, and utility functions for LabKey applications and pages

### version 6.58.2
*Released*: 6 August 2025
- GitHub Issue 788: LKSM Default sample lookup for assay design should default to lookupIsValid

### version 6.58.1
*Released*: 5 August 2025
- File handling - File path related issue bundle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,7 @@ export interface IDomainField {
lockExistingField?: boolean;
lockType: string;
lookupContainer?: string;
lookupIsValid?: boolean;
lookupQuery?: string;
lookupQueryValue: string;
lookupSchema?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ export const DEFAULT_SAMPLE_FIELD_CONFIG = {
lookupQuery: 'Materials',
lookupType: { ...SAMPLE_TYPE },
lookupValidator: LOOKUP_VALIDATOR,
lookupIsValid: true,
propertyValidators: List([LOOKUP_VALIDATOR]),
name: 'SampleID',
label: 'Sample ID',
Expand Down