Skip to content

Commit 90eff9a

Browse files
committed
Pass an empty string for the table cell tooltip if the cell value is an object.
1 parent cd86ce0 commit 90eff9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/pgadmin/static/js/components/PgReactTableStyled.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export const PgReactTableCell = forwardRef(({row, cell, children, className}, re
191191
...(cell.column.columnDef.maxSize ? { maxWidth: `${cell.column.columnDef.maxSize}px` } : {})
192192
}}
193193
className={classNames.join(' ')}
194-
title={typeof(cell.getValue()) !== 'object' && String(cell.getValue() ?? '')}>
194+
title={typeof(cell.getValue()) === 'object' ? '' : String(cell.getValue() ?? '')}>
195195
<div className='pgrd-row-cell-content'>{children}</div>
196196
</div>
197197
);

0 commit comments

Comments
 (0)