Hello,
I have a table with a column, feedback, containing the following data where I am trying to only display comments in the cell:
[
{"comments":"I left out the previous bag but no one picked it up. Order was delivered to the wrong house but my neighbors thankfully dropped off the meals to us.",
"time":"2023-01-22T19:35:34.270Z",
"recipient":"Dude Number 1",
"rating":3}]
I’ve managed to do this properly for many other columns, but for some reason I can’t get this working. I’ve tried:
{{currentRow.feedback[0]["comments"]}}
{{currentRow.feedback[0].comments}}
{{currentRow["feedback"][0].comments}}
{{currentRow["feedback"][0]["comments"]}}
Not sure what I’m doing wrong, but the evaluated data is good up-until it’s time for comments. What am I doing wrong!?