From 72a3ed90685e0fc07a5a561d905268c635674f02 Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Fri, 17 Jan 2025 15:32:11 +0530 Subject: [PATCH] Do not display the tooltip if the table cell value is an object. --- web/pgadmin/static/js/components/PgReactTableStyled.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/static/js/components/PgReactTableStyled.jsx b/web/pgadmin/static/js/components/PgReactTableStyled.jsx index 703357e9c..2c7005dad 100644 --- a/web/pgadmin/static/js/components/PgReactTableStyled.jsx +++ b/web/pgadmin/static/js/components/PgReactTableStyled.jsx @@ -191,7 +191,7 @@ export const PgReactTableCell = forwardRef(({row, cell, children, className}, re ...(cell.column.columnDef.maxSize ? { maxWidth: `${cell.column.columnDef.maxSize}px` } : {}) }} className={classNames.join(' ')} - title={String(cell.getValue() ?? '')}> + title={typeof(cell.getValue()) !== 'object' && String(cell.getValue() ?? '')}>
{children}
);