Skip to content

Commit f5d6cad

Browse files
committed
extension/src/goStatus: fix quick pick for gopls trace open
There is an extra space in the presented quick pick option. Fixes #3236 Change-Id: I073ee18b6296778c5056e5f4f6f662061d89a565 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571318 Reviewed-by: Suzy Mueller <[email protected]> Commit-Queue: Hyang-Ah Hana Kim <[email protected]> kokoro-CI: kokoro <[email protected]>
1 parent 53bf019 commit f5d6cad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extension/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v0.41.2 - 12 Mar, 2024
1+
## v0.41.2 - 14 Mar, 2024
22

33
This release is a point release to increase the prompt rate of Go telemetry
44
opt-in. Learn more at https://go.dev/doc/telemetry.

extension/src/goStatus.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export const expandGoStatusBar: CommandFactory = (ctx, goCtx) => async () => {
106106
case 'Choose Go Environment':
107107
vscode.commands.executeCommand('go.environment.choose');
108108
break;
109-
case `${languageServerIcon}Open 'gopls' trace`:
109+
case `${languageServerIcon} Open 'gopls' trace`:
110110
if (serverOutputChannel) {
111111
serverOutputChannel.show();
112112
}

0 commit comments

Comments
 (0)