fix for string displayed at copy ... because innerText is not correct with recursive sl-tee-items anymore with new event-Handler binding

This commit is contained in:
milan 2024-07-26 12:03:08 +02:00
parent 253a5a448c
commit b3e9e50af0

View File

@ -312,7 +312,7 @@ export class EgwPopupActionImplementation implements EgwActionImplementation {
const _implContext = {
event: e, posx: _xy.posx,
posy: _xy.posy,
innerText: nodeToUse.innerText || _node.innerText,//nodeToUse only exists on widgets that define findActionTarget
innerText: nodeToUse.title || _node.innerText,//nodeToUse only exists on widgets that define findActionTarget
target: nodeToUse.target || _node,
};
_callback.call(contextToUse || _context, _implContext, this);