From a60b0774ef573985fa77798328d813e627158065 Mon Sep 17 00:00:00 2001 From: Risha Bansal Date: Tue, 9 Jun 2026 01:44:01 -0500 Subject: [PATCH 1/2] Add tooltips/hover feature for overflowing dataset cell values --- frontend/components/table/CellValue.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/components/table/CellValue.tsx b/frontend/components/table/CellValue.tsx index 15cf9ed..ad3f0e5 100644 --- a/frontend/components/table/CellValue.tsx +++ b/frontend/components/table/CellValue.tsx @@ -65,11 +65,14 @@ export function CellValue({ } if (type === "number") { - return {str}; + return ( + + {str} + ; } return ( - MAX_CHARS ? str : undefined}> + {truncate(str)} ); From fd9d638a1f08f00b67421779815be118ba1954f7 Mon Sep 17 00:00:00 2001 From: Risha Bansal Date: Tue, 9 Jun 2026 02:08:41 -0500 Subject: [PATCH 2/2] Fix tooltip JSX syntax --- frontend/components/table/CellValue.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/components/table/CellValue.tsx b/frontend/components/table/CellValue.tsx index ad3f0e5..2f10ee2 100644 --- a/frontend/components/table/CellValue.tsx +++ b/frontend/components/table/CellValue.tsx @@ -68,7 +68,8 @@ export function CellValue({ return ( {str} - ; + + ); } return (