From 6d38cc70b8de8cd909f5cb382e03a2827c08e259 Mon Sep 17 00:00:00 2001 From: Arpit Date: Tue, 19 Jul 2022 12:25:09 +0530 Subject: [PATCH] fixes: event execution for listview widget (#3629) --- frontend/src/_helpers/appUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/_helpers/appUtils.js b/frontend/src/_helpers/appUtils.js index 21de4b4ffb..f20545647e 100644 --- a/frontend/src/_helpers/appUtils.js +++ b/frontend/src/_helpers/appUtils.js @@ -378,7 +378,7 @@ export async function onEvent(_ref, eventName, options, mode = 'edit') { ); } - if (eventName === 'onRowClicked' && options?.component?.component === 'ListView') { + if (eventName === 'onRowClicked' && options?.component?.component === 'Listview') { executeActionsForEventId(_ref, 'onRowClicked', options.component, mode, customVariables); }