mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
Avoid error if widget does not have transformAttributes method
This might be an issue with not properly implemented DetachedDOM interface
This commit is contained in:
parent
6fe2ec6c65
commit
6abb239705
@ -193,7 +193,7 @@ export class et2_nextmatch_rowProvider
|
||||
}
|
||||
|
||||
// Adjust data for that row
|
||||
entry.widget.transformAttributes.call(entry.widget,data);
|
||||
entry.widget.transformAttributes?.call(entry.widget, data);
|
||||
|
||||
// Call the setDetachedAttributes function
|
||||
entry.widget.setDetachedAttributes(nodes, data, _data);
|
||||
|
Loading…
Reference in New Issue
Block a user