Tags in table not rendering as multiple tags

Using a transformer I am able to get the data into an object and display in a table.
The issue is that for one of these columns I want to display Subjects as Tags:
Here is the column using tags:


And here is the data which appears correctly...to me at least so not sure what I am, doing. Could be something simple I am overlooking:

Anyone?

When you use the column as a string type does it populate?

Same result - unfortunately

Since "Subjects" is a single item array full of 32 other items, do you have to use item[0][i]?

Thanks but that also has not rendered as expected....

Resolved by using the following: {{item.map(name=>name.name)}} Thanks to @Tess !

2 Likes