Added tools (run multi cmds), fixed UI scrolling, added SSH algo's and key types.

This commit is contained in:
LukeGus
2025-07-19 02:27:20 -05:00
parent 49a4d20740
commit cfaa04e42c
15 changed files with 795 additions and 60 deletions
+8
View File
@@ -431,6 +431,14 @@ export function SSH({ onSelectView }: ConfigEditorProps): React.ReactElement {
onSelectView={onSelectView}
onAddHostSubmit={onAddHostSubmit}
onHostConnect={onHostConnect}
allTabs={allTabs}
runCommandOnTabs={(tabIds: number[], command: string) => {
allTabs.forEach(tab => {
if (tabIds.includes(tab.id) && tab.terminalRef?.current?.sendInput) {
tab.terminalRef.current.sendInput(command);
}
});
}}
/>
</div>
{/* Main area: fills the rest */}