Limit tooltip to selectedRow only

I've added a Cell tooltip to a column in my table that display the value of a hidden column. The tooltip displays the value of the hidden column when hovering over the cell for every row even though those rows are not selected.

How can I prevent the tooltip from appearing for rows that are not selected?
image

I was able to prevent the tooltip from appearing for empty cells with

{{ currentSourceRow.Company_LastUpdated ? moment.utc(currentSourceRow.Company_LastUpdated).format('MM-DD-YYYY') : '' }}

2 Likes