Displaying Component Name instead of ID

There are certain fields from Jira that are displayed as IDs in Coda instead of the name. Component is one of these fields.

The ID of the component isn’t useful for my team, we really need to be visualize and organize tickets by the name of the Component.

Does anyone know how to tell Coda to ignore the ID and display the name of a Component instead? (I’m trying to avoid creating a custom lookup table and formula to match the ID to the name)

3 Likes

The JSON payload on Components field is a bit strange. To get around that, here is what worked for me:

Concatenate("[",thisRow.Issue.Components.ToText(),"]").ParseJSON("$.[*].name")

Or

thisRow.Issue.Components.FormulaMap(CurrentValue.ParseJSON("#/name")).ListCombine()