Skip to content

Commit c556836

Browse files
committed
add image importer back to context menu
1 parent 26d7146 commit c556836

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/App.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2865,6 +2865,12 @@ function App() {
28652865
},
28662866
],
28672867
},
2868+
{
2869+
icon: FolderInput,
2870+
label: 'Import Images',
2871+
onClick: () => handleImportClick(currentFolderPath as string),
2872+
disabled: !currentFolderPath,
2873+
},
28682874
];
28692875
showContextMenu(event.clientX, event.clientY, options);
28702876
};

0 commit comments

Comments
 (0)