From 22f30d09b0f99b2bc8f66a69a62abc8545c1cd3c Mon Sep 17 00:00:00 2001 From: Nipun Agarwal <31271538+nipun1999@users.noreply.github.com> Date: Mon, 9 Aug 2021 15:47:35 +0530 Subject: [PATCH] Added fix for cmd + enter not running google sheets actions (#6446) --- app/client/src/sagas/ActionExecutionSagas.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/client/src/sagas/ActionExecutionSagas.ts b/app/client/src/sagas/ActionExecutionSagas.ts index 2447d8ff9b..daf03d3675 100644 --- a/app/client/src/sagas/ActionExecutionSagas.ts +++ b/app/client/src/sagas/ActionExecutionSagas.ts @@ -48,6 +48,7 @@ import { QUERIES_EDITOR_URL, INTEGRATION_EDITOR_URL, } from "constants/routes"; +import { SAAS_EDITOR_API_ID_URL } from "pages/Editor/SaaSEditor/constants"; import { executeApiActionRequest, executeApiActionSuccess, @@ -759,6 +760,7 @@ function* runActionShortcutSaga() { QUERIES_EDITOR_ID_URL(), API_EDITOR_URL_WITH_SELECTED_PAGE_ID(), INTEGRATION_EDITOR_URL(), + SAAS_EDITOR_API_ID_URL(), ], exact: true, strict: false,