Miguel,
Here is my full updated code:
{{
JSON.parse(item).map(coordinator_id => {
const staff = formatDataAsArray(ImportMissionCoordiantorTags.data).find(item => item.id === coordinator_id);
return staff ? staff.name : null;
}).filter(name => name !== null)
}}
I'm not getting any errors with this, but everything is resolving as null
I also tried creating a sql statement that would only return the name associated with the id that was passed to it, but I couldn't get that to work either.