From 0e78b9dbf2ea791e2aac7ba3d66c03bb382a6d35 Mon Sep 17 00:00:00 2001 From: navaneeth Date: Fri, 20 Aug 2021 12:03:13 +0530 Subject: [PATCH] BugFix: Goto app event action should use app slug --- frontend/src/Editor/Inspector/EventSelector.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Editor/Inspector/EventSelector.jsx b/frontend/src/Editor/Inspector/EventSelector.jsx index 13d9b24c71..54be16fc2f 100644 --- a/frontend/src/Editor/Inspector/EventSelector.jsx +++ b/frontend/src/Editor/Inspector/EventSelector.jsx @@ -54,7 +54,7 @@ export const EventSelector = ({ apps.map((item) => { appsOptionsList.push({ name: item.name, - value: item.id + value: item.slug }) }) return appsOptionsList;