Skip to content

Commit 3e6af72

Browse files
authored
Issue 52929: App hit selection summary grid doesn't render hit selection check icon if assay name ends with colon (#1782)
### version 6.38.1 *Released*: 24 April 2025 - Issue 52929: App hit selection summary grid doesn't render hit selection check icon if assay name ends with colon
1 parent 9254e0d commit 3e6af72

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

packages/components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labkey/components",
3-
"version": "6.38.0",
3+
"version": "6.38.1",
44
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
55
"sideEffects": false,
66
"files": [

packages/components/releaseNotes/components.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @labkey/components
22
Components, models, actions, and utility functions for LabKey applications and pages
33

4+
### version 6.38.1
5+
*Released*: 24 April 2025
6+
- Issue 52929: App hit selection summary grid doesn't render hit selection check icon if assay name ends with colon
7+
48
### version 6.38.0
59
*Released*: 23 April 2025
610
- Issue 52326: Copy/paste of date values across cells changes date formats

packages/components/src/internal/query/api.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,8 @@ function applyColumnMetadata(schemaQuery: SchemaQuery, rawColumn: any): QueryCol
321321
}
322322

323323
if (lcFieldKey.indexOf('::') > -1) {
324-
const lcPivotFieldKey = lcFieldKey.split('::')[1];
324+
// Issue 52929: account for a fieldKey ending with a colon char
325+
const lcPivotFieldKey = lcFieldKey.substring(lcFieldKey.lastIndexOf('::') + 2);
325326
const pivotColumnMeta = metadata.getIn([
326327
'schema',
327328
schemaQuery.schemaName.toLowerCase(),

0 commit comments

Comments
 (0)