At the moment I am using the below logic to match row content to the correct column, but it seems to be slow and because of that sometimes rows don't render. Is there a more efficient way to get the same result?
for (let value of values) {
let row = new Object();
for (let column of this.columns) {
row[column.prop] = value.FieldValues.find(
function(field){
return field["field_id"] == column.Fieldid}
);
}
rows.push(row);
}