Hello,
I am trying to create a new column in a table, where I would like to use a Mapped Value javascript to filter the result of another query (FullProducerList) to find out if a column in the table (Title) includes a value from the query.
I have tried like this
{{ FullProducerList.data.Name.filter(item => item.toLowerCase().includes(currentSourceRow.Title.toLowerCase())) }}
The Title column is set as the Source for the column that I am trying to populate.
I am getting blank values for all rows in the table, even tough I can see that there are matches between the array and the Title field in some rows.
The array have e.g. ["AA", "BB", "CC"] and the title column have a field with the content "This row should match AA"
Thank you in advance for your assistance.