Table tag option list disappears

I have a table with a column service_completed. I want this to be a tag with an option list. The data for the option list is in the column services.
The value in services is different per row and is structured like this:

[
          {
            "id": "a",
            "name": "Service A"
          },
          {
            "id": "b",
            "name": "Service  B"
          },
          {
            "id": "c",
            "name": "Service C"
          }
        ]

Data source: {{ JSON.parse(currentRow.services || '[]') }}
Mapped options:
Value: {{ item.id }}
Label: {{ item.name }}

Tag mapped value: {{ item }}

When I first enter the data source, everything looks good and the dropdown populates correctly.
chrome_n4s5kIUUiq

However when I refresh the page, the options disappear!
chrome_pNwtCmUqBE

How can I fix this behavior?

Hey @Shawn_Optipath ,

I reviewed similar forums regarding this issue and attempted the suggested fixes, but they didn't resolve the problem. I believe this might be a bug.

3 Likes

A post was merged into an existing topic: Tag options are disapprearing

Hi @Shawn_Optipath, I merged your feedback with the existing report. I'm happy to continue the conversation there.

Thanks for the link, @WidleStudioLLP!

Hi @Paulo , appreciated! Thank you @WidleStudioLLP. I have an idea for a workaround and will post once I have a working version.

1 Like

Hi @Paulo, @WidleStudioLLP ,
I found a pretty cool workaround. I posted it here. Definitely inspired by this post.

1 Like