diff --git a/app/client/src/ce/PluginActionEditor/components/PluginActionResponse/hooks/usePluginActionResponseTabs.tsx b/app/client/src/ce/PluginActionEditor/components/PluginActionResponse/hooks/usePluginActionResponseTabs.tsx index a4d7a0165cef..e36d658e4d6e 100644 --- a/app/client/src/ce/PluginActionEditor/components/PluginActionResponse/hooks/usePluginActionResponseTabs.tsx +++ b/app/client/src/ce/PluginActionEditor/components/PluginActionResponse/hooks/usePluginActionResponseTabs.tsx @@ -115,6 +115,7 @@ function usePluginActionResponseTabs() { PluginType.REMOTE, PluginType.SAAS, PluginType.INTERNAL, + PluginType.EXTERNAL_SAAS, ].includes(plugin.type) ) { if (showSchema) { diff --git a/app/client/src/pages/Editor/Explorer/Actions/helpers.tsx b/app/client/src/pages/Editor/Explorer/Actions/helpers.tsx index dccca134a118..a81027d95ff7 100644 --- a/app/client/src/pages/Editor/Explorer/Actions/helpers.tsx +++ b/app/client/src/pages/Editor/Explorer/Actions/helpers.tsx @@ -62,7 +62,8 @@ export const resolveActionURL = ({ pluginType === PluginType.DB || pluginType === PluginType.REMOTE || pluginType === PluginType.AI || - pluginType === PluginType.INTERNAL + pluginType === PluginType.INTERNAL || + pluginType === PluginType.EXTERNAL_SAAS ) { return queryEditorIdURL({ baseParentEntityId, @@ -86,6 +87,7 @@ export const ACTION_PLUGIN_MAP: Array = [ PluginType.REMOTE, PluginType.AI, PluginType.INTERNAL, + PluginType.EXTERNAL_SAAS, ], icon: dbQueryIcon, key: generateReactKey(), diff --git a/app/client/src/sagas/QueryPaneSagas.ts b/app/client/src/sagas/QueryPaneSagas.ts index 6d98b2ca63ae..8fb02f41bed1 100644 --- a/app/client/src/sagas/QueryPaneSagas.ts +++ b/app/client/src/sagas/QueryPaneSagas.ts @@ -398,6 +398,7 @@ function* handleQueryCreatedSaga(actionPayload: ReduxAction) { PluginType.REMOTE, PluginType.AI, PluginType.INTERNAL, + PluginType.EXTERNAL_SAAS, ].includes(pluginType) ) return;