Show Tag Dropdown in Table Column

I have a Table component with a column formatted as Tag with an Option list for shirt sizes. Most of the records do not have a value for this column so it's not possible for the user to select a value because the dropdown doesn't appear.

Is it possible to show the dropdown even though the record doesn't have a value?

Per this post, the table component won't render the placeholder on null values in the data.

Using this as the Mapped value worked:

{{currentSourceRow.employee_shirtsize ? currentSourceRow.employee_shirtsize : undefined}}

1 Like