feat: allow multiple terminal tabs per connection

This commit is contained in:
liumangmang
2026-03-26 18:04:39 +08:00
parent 93cc13ddd0
commit 78e6fc3e47
5 changed files with 219 additions and 19 deletions

View File

@@ -91,9 +91,9 @@ async function handleDelete(conn: Connection) {
await store.deleteConnection(conn.id)
}
function openTerminal(conn: Connection) {
tabsStore.openOrFocus(conn)
router.push('/terminal')
function openTerminal(conn: Connection) {
tabsStore.openTab(conn)
router.push('/terminal')
}
function openSftp(conn: Connection) {