Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mlhiter committed Dec 24, 2024
1 parent ba380f1 commit c3c47cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/ide/vscode/devbox/src/providers/DBViewProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class DBViewProvider
const remoteUri = workspaceFolder.uri.authority
const devboxId = remoteUri.replace(/^ssh-remote\+/, '') // devbox = sshHostLabel
const region = GlobalStateManager.getRegion(devboxId)
targetUrl = `http://${region}?openapp=system-dbprovider`
targetUrl = `https://${region}?openapp=system-dbprovider`
this._register(
vscode.commands.registerCommand('devbox.gotoDatabaseWebPage', () => {
vscode.commands.executeCommand('devbox.openExternalLink', [
Expand Down Expand Up @@ -143,7 +143,7 @@ export class DBViewProvider
const remoteUri = workspaceFolder.uri.authority
const devboxId = remoteUri.replace(/^ssh-remote\+/, '') // devbox = sshHostLabel
const region = GlobalStateManager.getRegion(devboxId)
targetUrl = `http://${region}?openapp=system-terminal?defaultCommand=${targetCommand}`
targetUrl = `https://${region}?openapp=system-terminal?defaultCommand=${targetCommand}`
vscode.commands.executeCommand('devbox.openExternalLink', [targetUrl])
}
}
Expand Down

0 comments on commit c3c47cd

Please sign in to comment.