Wrap `tags` in table


Hi, I have a column type tags, how make my tags wrap according to column width?

@engineering-tajir The Tag column type doesn't support wrapping it renders each tag as an inline-flex chip, so they always stay in one line.

To make them wrap based on the column width, switch the column to HTML format and render the tags inside a flex container with flex-wrap: wrap. That allows the tags to automatically move to the next line when the column is narrow.

1 Like