Hi, I'm try to retrieve from s3 a file using the [i] key from a listView component.
For example, I've a listView component with n rows. In the listView i'm able to retrieve the correct data with
query.data.invoice_number[i]
If in the s3 operation options I put
{
Key: {{query.data.invoice_number[i] + '.pdf'}},
Expires: 600
}
it returns "undefined.pdf".
Using [0] it works properly, but obviously if the number of rows is > 1, only the first item as the correct data.