Shop related question (another one)

I am not quite sure what that would lookI havent personlly tried it on the parts of that endpoint that have arrays as the value.

What happens if you console.log(this.orders) instead of the reponse.item. That should show what the data looks like that the table renders.

I guess it is because the tbl-component invokes a value from an array by its keyname.

In my case it would be like:
:value="getValue(row[customFields[1].value], column.type)"
And because customFields[1].value is not a keyname it will return null.

I guess I have to create a computed property for this.orders to reduce the custom field to only one value instead of an array, right?