diff --git a/apps/sim/app/workspace/[workspaceId]/tables/[tableId]/components/workflow-sidebar/workflow-sidebar.tsx b/apps/sim/app/workspace/[workspaceId]/tables/[tableId]/components/workflow-sidebar/workflow-sidebar.tsx
index e213befae6c..62c96b80f78 100644
--- a/apps/sim/app/workspace/[workspaceId]/tables/[tableId]/components/workflow-sidebar/workflow-sidebar.tsx
+++ b/apps/sim/app/workspace/[workspaceId]/tables/[tableId]/components/workflow-sidebar/workflow-sidebar.tsx
@@ -13,12 +13,12 @@ import {
Loader,
OverflowText,
Switch,
- Tooltip,
toast,
} from '@sim/emcn'
import { ArrowLeft, SquareArrowUpRight, X } from '@sim/emcn/icons'
import { toError } from '@sim/utils/errors'
import { generateId } from '@sim/utils/id'
+import { WorkflowPreviewAction } from '@/components/workflow/workflow-preview-action'
import { findValidationIssue, isValidationError } from '@/lib/api/client/errors'
import type {
AddWorkflowGroupBodyInput,
@@ -711,27 +711,18 @@ export function WorkflowSidebarBody({
/>
{!isEnrichment && (
-
-
-
-
- Open workflow
-
+
+ window.open(
+ `/workspace/${workspaceId}/w/${selectedWorkflowId}`,
+ '_blank',
+ 'noopener,noreferrer'
+ )
+ }
+ >
+
+
)}
>
) : (
diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/editor.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/editor.tsx
index 61bd02da17b..9222584ba9e 100644
--- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/editor.tsx
+++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/editor.tsx
@@ -24,6 +24,7 @@ import { useParams } from 'next/navigation'
import { usePostHog } from 'posthog-js/react'
import { useShallow } from 'zustand/react/shallow'
import { useStoreWithEqualityFn } from 'zustand/traditional'
+import { WorkflowPreviewAction } from '@/components/workflow/workflow-preview-action'
import { isMcpRuntimeReference } from '@/lib/mcp/operation-policy'
import { resolveMcpBlockConfig } from '@/lib/mcp/workflow-config'
import { captureEvent } from '@/lib/posthog/client'
@@ -610,21 +611,12 @@ export function Editor() {
lightweight
/>
-
-
-
-
- Open workflow
-
+
+
+
>
) : (
diff --git a/apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/preview-editor.tsx b/apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/preview-editor.tsx
index b51a54f5277..8b027c4c74a 100644
--- a/apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/preview-editor.tsx
+++ b/apps/sim/app/workspace/[workspaceId]/w/components/preview/components/preview-editor/preview-editor.tsx
@@ -30,6 +30,7 @@ import {
import { formatDuration } from '@sim/utils/formatting'
import { ReactFlowProvider } from '@xyflow/react'
import { useParams } from 'next/navigation'
+import { WorkflowPreviewAction } from '@/components/workflow/workflow-preview-action'
import { extractReferencePrefixes } from '@/lib/workflows/sanitization/references'
import {
buildCanonicalIndexForSurface,
@@ -1380,31 +1381,18 @@ function PreviewEditorContent({
cursorStyle='grab'
/>
-
-
-
-
-
- {isExecutionMode && onDrillDown ? 'Expand workflow' : 'Open in new tab'}
-
-
+
+ {isExecutionMode && onDrillDown ? (
+
+ ) : (
+
+ )}
+
>
) : (
diff --git a/apps/sim/components/workflow/workflow-preview-action.tsx b/apps/sim/components/workflow/workflow-preview-action.tsx
new file mode 100644
index 00000000000..e372a7bf4e3
--- /dev/null
+++ b/apps/sim/components/workflow/workflow-preview-action.tsx
@@ -0,0 +1,34 @@
+'use client'
+
+import { type ComponentProps, forwardRef } from 'react'
+import { Button, Tooltip } from '@sim/emcn'
+
+interface WorkflowPreviewActionProps
+ extends Omit<
+ ComponentProps,
+ 'variant' | 'size' | 'iconSize' | 'iconPadding' | 'type' | 'className'
+ > {
+ 'aria-label': string
+}
+
+/** Solid corner action shared by embedded workflow previews. */
+export const WorkflowPreviewAction = forwardRef(
+ ({ 'aria-label': label, ...props }, ref) => (
+
+
+
+
+ {label}
+
+ )
+)
+
+WorkflowPreviewAction.displayName = 'WorkflowPreviewAction'