From 15963615c95312b97dd216013a1264758987f61a Mon Sep 17 00:00:00 2001 From: Yousif Yassi Date: Mon, 29 Jan 2024 10:03:20 -0500 Subject: [PATCH] adding updates based on feedback --- src/components/DataGroups/TextDataGroup.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/DataGroups/TextDataGroup.js b/src/components/DataGroups/TextDataGroup.js index e7437875..ef3cbf3a 100644 --- a/src/components/DataGroups/TextDataGroup.js +++ b/src/components/DataGroups/TextDataGroup.js @@ -12,12 +12,17 @@ const valueToString = (value) => { export const TextDataGroup = ({ value }) => { const output = valueToString(value); + const style = { + padding: 5, + height: TextDataGroup.height, + overflow: "hidden", + whiteSpace: "nowrap", + textOverflow: "ellipsis", + }; return ( -
+
{output}