From dfe878f0edd2e885f11ce3cc418441e08a403ed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Stawikowski?= <56937241+Pawikoski@users.noreply.github.com> Date: Sat, 18 Jan 2025 00:47:37 +0100 Subject: [PATCH] Add `persist_browser_session` value in convert() function (#1578) --- .../src/routes/workflows/editor/workflowEditorUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts b/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts index 33a9d2b6..1b4a7b70 100644 --- a/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts +++ b/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts @@ -1653,6 +1653,7 @@ function convert(workflow: WorkflowApiResponse): WorkflowCreateYAMLRequest { proxy_location: workflow.proxy_location, webhook_callback_url: workflow.webhook_callback_url, totp_verification_url: workflow.totp_verification_url, + persist_browser_session: workflow.persist_browser_session, workflow_definition: { parameters: convertParametersToParameterYAML(userParameters), blocks: convertBlocksToBlockYAML(workflow.workflow_definition.blocks),