BugFix: Goto app event action should use app slug

This commit is contained in:
navaneeth 2021-08-20 12:03:13 +05:30
parent f25868a832
commit 0e78b9dbf2

View file

@ -54,7 +54,7 @@ export const EventSelector = ({
apps.map((item) => { apps.map((item) => {
appsOptionsList.push({ appsOptionsList.push({
name: item.name, name: item.name,
value: item.id value: item.slug
}) })
}) })
return appsOptionsList; return appsOptionsList;