How to get new table component to render new lines for arrays?

Hi All,

In the legacy table component, I could use a mapped value of {{ self.join("\n")}} for a given column to change e.g. ["a", "b", "c"] to render as

a
b
c

In the new table component, I should be able to use {{ item.join("\n") }}to achieve the same outcome. Unfortunately the new table component does not seem to render this, no matter what configuration I try.

When I download the table content, the new lines are rendered properly in the resulting .csv - is there any way to address this in the component?

Solved my own query.

Instead of multi-line text, use markdown as column type.

1 Like