Skip to content

Commit

Permalink
Update ssh.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Aug 16, 2024
1 parent a1e54b8 commit b9c6bbf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tabby-ssh/src/session/ssh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import stripAnsi from 'strip-ansi'
import * as shellQuote from 'shell-quote'
import { Injector } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { ConfigService, FileProvidersService, HostAppService, NotificationsService, PlatformService, PromptModalComponent, LogService, Logger, TranslateService } from 'tabby-core'
import { ConfigService, FileProvidersService, NotificationsService, PromptModalComponent, LogService, Logger, TranslateService } from 'tabby-core'
import { Socket } from 'net'
import { Subject, Observable } from 'rxjs'
import { HostKeyPromptModalComponent } from '../components/hostKeyPromptModal.component'
Expand Down Expand Up @@ -87,8 +87,8 @@ export class SSHSession {

private passwordStorage: PasswordStorageService
private ngbModal: NgbModal
private hostApp: HostAppService
private platform: PlatformService
// private hostApp: HostAppService
// private platform: PlatformService
private notifications: NotificationsService
private fileProviders: FileProvidersService
private config: ConfigService
Expand All @@ -104,8 +104,8 @@ export class SSHSession {

this.passwordStorage = injector.get(PasswordStorageService)
this.ngbModal = injector.get(NgbModal)
this.hostApp = injector.get(HostAppService)
this.platform = injector.get(PlatformService)
// this.hostApp = injector.get(HostAppService)
// this.platform = injector.get(PlatformService)
this.notifications = injector.get(NotificationsService)
this.fileProviders = injector.get(FileProvidersService)
this.config = injector.get(ConfigService)
Expand Down

0 comments on commit b9c6bbf

Please sign in to comment.