diff --git a/core/package-lock.json b/core/package-lock.json index 02639a15273..974d4e943a4 100644 --- a/core/package-lock.json +++ b/core/package-lock.json @@ -8,7 +8,7 @@ "name": "labkey-core", "version": "0.0.0", "dependencies": { - "@labkey/components": "3.5.0", + "@labkey/components": "3.5.3", "@labkey/themes": "1.3.3" }, "devDependencies": { @@ -3339,9 +3339,9 @@ } }, "node_modules/@labkey/components": { - "version": "3.5.0", - "resolved": "https://labkey.jfrog.io/artifactory/api/npm/libs-client/@labkey/components/-/@labkey/components-3.5.0.tgz", - "integrity": "sha512-CZ5G8dRyhTiEn5mDVtnkQlopsz1RAAG1h9c1wg/5Tfbrybz+BOOIQSbIGKW+hBoTEhfjkKOHlZQo7LLfiUVmWw==", + "version": "3.5.3", + "resolved": "https://labkey.jfrog.io/artifactory/api/npm/libs-client/@labkey/components/-/@labkey/components-3.5.3.tgz", + "integrity": "sha512-FL51evz8lo5eQ9Hul+IS0hN7MTU1xbR9TDVjkJq5W/8CV+iscxcDTfqB9YmV/3JW3nJ4LCwOVXGuwPGiUMZF7A==", "dependencies": { "@labkey/api": "1.28.0", "@testing-library/jest-dom": "~5.17.0", @@ -19555,9 +19555,9 @@ } }, "@labkey/components": { - "version": "3.5.0", - "resolved": "https://labkey.jfrog.io/artifactory/api/npm/libs-client/@labkey/components/-/@labkey/components-3.5.0.tgz", - "integrity": "sha512-CZ5G8dRyhTiEn5mDVtnkQlopsz1RAAG1h9c1wg/5Tfbrybz+BOOIQSbIGKW+hBoTEhfjkKOHlZQo7LLfiUVmWw==", + "version": "3.5.3", + "resolved": "https://labkey.jfrog.io/artifactory/api/npm/libs-client/@labkey/components/-/@labkey/components-3.5.3.tgz", + "integrity": "sha512-FL51evz8lo5eQ9Hul+IS0hN7MTU1xbR9TDVjkJq5W/8CV+iscxcDTfqB9YmV/3JW3nJ4LCwOVXGuwPGiUMZF7A==", "requires": { "@labkey/api": "1.28.0", "@testing-library/jest-dom": "~5.17.0", diff --git a/core/package.json b/core/package.json index 222cec9edbd..477ba8e6c89 100644 --- a/core/package.json +++ b/core/package.json @@ -54,7 +54,7 @@ } }, "dependencies": { - "@labkey/components": "3.5.0", + "@labkey/components": "3.5.3", "@labkey/themes": "1.3.3" }, "devDependencies": { diff --git a/list/src/org/labkey/list/model/ListManagerTable.java b/list/src/org/labkey/list/model/ListManagerTable.java index b2921eb1433..611156862f0 100644 --- a/list/src/org/labkey/list/model/ListManagerTable.java +++ b/list/src/org/labkey/list/model/ListManagerTable.java @@ -89,9 +89,9 @@ public Object getValue(RenderContext ctx) String category = (String) super.getValue(ctx); if (ListDefinition.Category.PublicPicklist.toString().equals(category)) - return "public"; + return "Yes"; else if (ListDefinition.Category.PrivatePicklist.toString().equals(category)) - return "private"; + return "No"; return null; }