Skip to content
Snippets Groups Projects
Unverified Commit 4f390d7c authored by Murtaza Patrawala's avatar Murtaza Patrawala Committed by GitHub
Browse files

Regression: Close button on modals created via apps not working (#26127)

parent 00d346ce
No related branches found
No related tags found
No related merge requests found
...@@ -235,9 +235,9 @@ const appsRoutes = ...@@ -235,9 +235,9 @@ const appsRoutes =
}; };
try { try {
Promise.await(orch.triggerEvent('IUIKitInteractionHandler', action)); const result = Promise.await(orch.triggerEvent('IUIKitInteractionHandler', action));
res.sendStatus(200); res.send(result);
} catch (e) { } catch (e) {
res.status(500).send(e); // e.message res.status(500).send(e); // e.message
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment