From 90eff9a596294f439defb4f39159a71c4160fbcb Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Mon, 20 Jan 2025 16:53:01 +0530 Subject: [PATCH] Pass an empty string for the table cell tooltip if the 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 2c7005dad..241fe9c15 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={typeof(cell.getValue()) !== 'object' && String(cell.getValue() ?? '')}> + title={typeof(cell.getValue()) === 'object' ? '' : String(cell.getValue() ?? '')}>
{children}
);