This commit is contained in:
Yuri Kuznetsov
2025-04-03 11:15:42 +03:00
parent ad00a8cff8
commit 0fe44b0885
+4 -4
View File
@@ -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);
}
}