From a8bd6e9e3cdfee445c9869c96ed5fe035a326871 Mon Sep 17 00:00:00 2001 From: hadi Date: Fri, 28 Jul 2023 15:20:59 +0200 Subject: [PATCH] Fix click handling on grid's row no longer works (cherry picked from commit 3dbdbc05964ad9dded880318b3e80b309185cc88) --- api/js/egw_action/EgwPopupActionImplementation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/egw_action/EgwPopupActionImplementation.ts b/api/js/egw_action/EgwPopupActionImplementation.ts index f4f0f19704..d9f9672326 100644 --- a/api/js/egw_action/EgwPopupActionImplementation.ts +++ b/api/js/egw_action/EgwPopupActionImplementation.ts @@ -106,7 +106,7 @@ export class EgwPopupActionImplementation implements EgwActionImplementation { } if (!(_context.manager.getActionsByAttr('singleClick', true).length > 0 && - e.originalEvent.target.classList.contains('et2_clickable'))) { + e.target.classList.contains('et2_clickable'))) { _callback.call(_context, "default", this); }