mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 08:57:21 +00:00
parent
b0973791a8
commit
8cb75e14a2
3 changed files with 4 additions and 3 deletions
|
@ -84,7 +84,7 @@ export class SerialTabComponent extends BaseTerminalTabComponent<SerialProfile>
|
|||
this.attachSessionHandler(this.session!.destroyed$, () => {
|
||||
if (this.frontend) {
|
||||
// Session was closed abruptly
|
||||
if (this.config.store.terminal.behaviorOnSessionEnds === 'close') {
|
||||
if (this.config.store.terminal.behaviorOnSessionEnds == 'close') {
|
||||
// Close the tab
|
||||
this.destroy()
|
||||
} else if (this.config.store.terminal.behaviorOnSessionEnds.startsWith('reconnect-or-')) {
|
||||
|
|
|
@ -158,9 +158,10 @@ export class SSHTabComponent extends BaseTerminalTabComponent<SSHProfile> implem
|
|||
const session = this.session!
|
||||
this.attachSessionHandler(session.destroyed$, () => {
|
||||
if (this.frontend) {
|
||||
|
||||
this.write('\r\n' + colors.black.bgWhite(' SSH ') + ` ${this.sshSession?.profile.options.host}: session closed\r\n`)
|
||||
|
||||
if (this.config.store.terminal.behaviorOnSessionEnds === 'close') {
|
||||
if (this.config.store.terminal.behaviorOnSessionEnds == 'close') {
|
||||
// Close the tab
|
||||
this.destroy()
|
||||
} else if (this.config.store.terminal.behaviorOnSessionEnds.startsWith('reconnect-or-')) {
|
||||
|
|
|
@ -48,7 +48,7 @@ export class TelnetTabComponent extends BaseTerminalTabComponent<TelnetProfile>
|
|||
this.attachSessionHandler(session.destroyed$, () => {
|
||||
if (this.frontend) {
|
||||
// Session was closed abruptly
|
||||
if (this.config.store.terminal.behaviorOnSessionEnds === 'close') {
|
||||
if (this.config.store.terminal.behaviorOnSessionEnds == 'close') {
|
||||
// Close the tab
|
||||
this.destroy()
|
||||
} else if (this.config.store.terminal.behaviorOnSessionEnds.startsWith('reconnect-or-')) {
|
||||
|
|
Loading…
Reference in a new issue