fixes: event execution for listview widget (#3629)

This commit is contained in:
Arpit 2022-07-19 12:25:09 +05:30 committed by GitHub
parent e36f869ed2
commit 6d38cc70b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}