Custom Tooltip Expanded "crashes" the expanded window

  • Goal:
    I'm working on making a custom tooltip inside of a table component. It can't handle the element aspect, and I was trying to be clever and use a console.log in it.

  • Steps:

Table component -> Table cell -> Add-ons -> Status Indicator -> Tooltip Pop-out

  • Details: Tooltip pop-out.

I had entered:

Rejection Codes:
{{ console.log(table1.data) }}
{{ table1.data.find() || 'None' }}

…because I need access to data in the table itself (I'm reworking this anyways, it just made me discover the bug).

This "crashes" the pop-up - it'll open, and it looks like the "preview" area in the pop-out window holds an error and abruptly closes.

I CAN access the text before the pop-out, and it doesn't "crash" - but I would expect it to not crash in pop-out, either.

Hello @keif!

Thank you for find this, very odd. I would expect the tool tip pop up to be able to handle large amounts of data but maybe the table data is so long it blows past the character limit and closes out the screen.

Definitely do not recommend console logging from the tooltip :sweat_smile:

How are you able to "access the text before the pop-out" when it doesn't crash? Little confused on that part.