Skip to content

Commit

Permalink
honor default ssh username for the quick connect box - fixes #4663
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Oct 28, 2021
1 parent a2de29e commit 937243a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabby-ssh/src/profiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class SSHProfilesService extends ProfileProvider<SSHProfile> {
}

quickConnect (query: string): PartialProfile<SSHProfile> {
let user = 'root'
let user: string|undefined = undefined
let host = query
let port = 22
if (host.includes('@')) {
Expand Down

0 comments on commit 937243a

Please sign in to comment.