1 2 3 4 5 6 7 8 9 | onAction: { // (int index, var result, var actionId)
scope.activateAction(result, baseItem.categoryId, actionId);
}
should be
onAction: { // (int index, var result, var actionId)
scope.activateAction(result, baseItem.category, actionId);
}
|