Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/client/src/ce/actions/environmentAction.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { APP_MODE } from "entities/App";

// Redux action to show the environment info modal before deploy
export const showEnvironmentDeployInfoModal = () => ({});

Expand All @@ -11,12 +13,14 @@ export const setCurrentEditingEnvironmentID = (currentEditingId: string) => ({
export const fetchingEnvironmentConfigs = ({
editorId,
fetchDatasourceMeta = false,
mode,
workspaceId,
}: {
editorId: string;
fetchDatasourceMeta: boolean;
workspaceId: string;
mode?: APP_MODE;
Comment thread
ayushpahwa marked this conversation as resolved.
}) => ({
type: "",
payload: { workspaceId, editorId, fetchDatasourceMeta },
payload: { workspaceId, editorId, fetchDatasourceMeta, mode },
});
1 change: 1 addition & 0 deletions app/client/src/ce/sagas/ApplicationSagas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ export function* fetchAppAndPagesSaga(
payload: {
workspaceId: response.data.workspaceId,
editorId: response.data.application?.id,
mode: request.mode,
},
});

Expand Down