You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/resource-content/components/browser-session/browser-session.tsx
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -271,6 +271,10 @@ export function BrowserSession() {
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/home/components/mothership-view/components/resource-content/components/browser-session/browser-tab-strip.tsx
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/workflow-list/components/context-menu/context-menu.tsx
+22-1Lines changed: 22 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ import {
22
22
SquareArrowUpRight,
23
23
Trash,
24
24
Unlock,
25
+
X,
25
26
}from'@sim/emcn/icons'
26
27
import{Pin,PinOff}from'lucide-react'
27
28
@@ -52,6 +53,12 @@ interface ContextMenuProps {
52
53
onDuplicate?: ()=>void
53
54
onExport?: ()=>void
54
55
onDelete: ()=>void
56
+
/**
57
+
* Closes the item rather than deleting it — for tabs, where the destructive
58
+
* action is "close this one", not "delete it forever". Named for the item so
59
+
* it cannot be confused with `onClose`, which dismisses this menu.
0 commit comments