Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
lijiahangmax
2024-07-12 00:02:57 +08:00
16 changed files with 44 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
VITE_API_BASE_URL= 'http://127.0.0.1:9200/orion-visor/api'
VITE_WS_BASE_URL= 'ws://127.0.0.1:9200/orion-visor/keep-alive'
VITE_APP_VERSION= '2.0.10'
VITE_APP_VERSION= '2.0.11'
VITE_APP_RELEASE= 'community'
VITE_SFTP_PREVIEW_MB= 2
VITE_DEMO_MODE= false

View File

@@ -1,6 +1,6 @@
VITE_API_BASE_URL= '/orion-visor/api'
VITE_WS_BASE_URL= '/orion-visor/keep-alive'
VITE_APP_VERSION= '2.0.10'
VITE_APP_VERSION= '2.0.11'
VITE_APP_RELEASE= 'community'
VITE_SFTP_PREVIEW_MB= 2
VITE_DEMO_MODE= false

View File

@@ -1,7 +1,7 @@
{
"name": "orion-visor-ui",
"description": "Orion Visor UI",
"version": "2.0.10",
"version": "2.0.11",
"private": true,
"author": "Jiahang Li",
"license": "Apache 2.0",

View File

@@ -137,7 +137,6 @@ export default class TerminalSessionManager implements ITerminalSessionManager {
Object.values(this.sessions)
.filter(s => s?.type === PanelSessionType.SSH.type)
.map(s => s as SshSession)
.filter(h => h.connected)
.forEach(h => h.fit());
}