We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb69408 commit 74ef7c3Copy full SHA for 74ef7c3
apps/desktop/src/components/main/sidebar/timeline/item.tsx
@@ -258,14 +258,19 @@ const SessionItem = memo(
258
259
const contextMenu = useMemo(
260
() => [
261
+ {
262
+ id: "open-new-tab",
263
+ text: "Open in new tab",
264
+ action: handleCmdClick,
265
+ },
266
{
267
id: "reveal",
268
text: "Reveal in Finder",
269
action: handleRevealInFinder,
270
},
- { id: "delete", text: "Delete Completely", action: handleDelete },
271
+ { id: "delete", text: "Delete completely", action: handleDelete },
272
],
- [handleRevealInFinder, handleDelete],
273
+ [handleCmdClick, handleRevealInFinder, handleDelete],
274
);
275
276
return (
0 commit comments