mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
Fix first repeating row had no widgets
This commit is contained in:
@ -227,7 +227,7 @@ export class et2_arrayMgr
|
||||
const pos_var = _ident.indexOf('$');
|
||||
if (pos_var >= 0 && (this.perspectiveData.row != null || !_ident.match(/\$\{?row\}?/))) {
|
||||
// Get the content array for the current row
|
||||
const row = this.perspectiveData.row || '';
|
||||
const row = typeof this.perspectiveData.row == 'number' ? this.perspectiveData.row : '';
|
||||
const row_cont = this.data[row] || {};
|
||||
// $cont is NOT root but current name-space in old eTemplate
|
||||
const cont = this.data;//getRoot().data;
|
||||
|
Reference in New Issue
Block a user