From 47fe22d2b4fad527dc9cd6968050aba3dfc7dbf0 Mon Sep 17 00:00:00 2001 From: Jason Gill Date: Mon, 23 Sep 2024 14:46:46 -0600 Subject: [PATCH 1/2] update description column to show 3 lines --- .../hooks/useDetectionResultColumns.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/clients/admin-ui/src/features/data-discovery-and-detection/hooks/useDetectionResultColumns.tsx b/clients/admin-ui/src/features/data-discovery-and-detection/hooks/useDetectionResultColumns.tsx index 0205071f0b7..e19ec3039c3 100644 --- a/clients/admin-ui/src/features/data-discovery-and-detection/hooks/useDetectionResultColumns.tsx +++ b/clients/admin-ui/src/features/data-discovery-and-detection/hooks/useDetectionResultColumns.tsx @@ -105,8 +105,16 @@ const useDetectionResultColumns = ({ }), columnHelper.accessor((row) => row.description, { id: "description", - cell: (props) => , + cell: (props) => ( + + ), header: (props) => , + size: 300, }), columnHelper.display({ id: "status", @@ -134,6 +142,7 @@ const useDetectionResultColumns = ({ ), header: "Actions", + size: 180, }), ]; return { columns }; From 4efb8e6d438205a749fd7ecc9ea511c761c184d9 Mon Sep 17 00:00:00 2001 From: Jason Gill Date: Mon, 23 Sep 2024 15:15:08 -0600 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cba139049dc..67de33d4220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ The types of changes are: - Ignore `400` errors from Talkable's `person` endpoint. [#5317](https://github.com/ethyca/fides/pull/5317) - Fix Email Connector logs so they use configuration key instead of name [#5286](https://github.com/ethyca/fides/pull/5286) - Updated Responsys and Firebase Auth integrations to allow multiple identities [#5318](https://github.com/ethyca/fides/pull/5318) +- Fix Detection & Discovery descriptions to not get cut off so tightly [#5322](https://github.com/ethyca/fides/pull/5322) ### Added - Added support for hierarchical notices in Privacy Center [#5291](https://github.com/ethyca/fides/pull/5291)