diff --git a/client/src/views/record/list-expanded.js b/client/src/views/record/list-expanded.js index e2e1591163..b19a61d8df 100644 --- a/client/src/views/record/list-expanded.js +++ b/client/src/views/record/list-expanded.js @@ -191,14 +191,14 @@ class ListExpandedRecordView extends ListRecordView { prepareInternalLayout(internalLayout, model) { const rows = internalLayout.rows || []; - rows.forEach((row) => { - row.forEach((col) => { - col.el = this.getCellSelector(model, col); + rows.forEach(row => { + row.forEach(col => { + col.fullSelector = this.getCellSelector(model, col); }); }); if (internalLayout.right) { - internalLayout.right.el = this.getCellSelector(model, internalLayout.right); + internalLayout.right.fullSelector = this.getCellSelector(model, internalLayout.right); } }