From f895cf4f51550246f634007cd20e3ddf33848dbf Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 9 May 2023 00:25:18 -0400 Subject: [PATCH] Fixes wrong title for open on remote commands --- src/commands/openOnRemote.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/openOnRemote.ts b/src/commands/openOnRemote.ts index f62a22f..21d39ad 100644 --- a/src/commands/openOnRemote.ts +++ b/src/commands/openOnRemote.ts @@ -89,7 +89,7 @@ export class OpenOnRemoteCommand extends Command { let placeHolder = `Choose which remote to ${args.clipboard ? 'copy the link for' : 'open on'}`; function getTitlePrefix(type: string): string { - return args?.clipboard ? `Copy Link to ${type} for ${provider}` : `Open Branch on ${provider}`; + return args?.clipboard ? `Copy Link to ${type} for ${provider}` : `Open ${type} on ${provider}`; } switch (args.resource.type) {