Sfoglia il codice sorgente

Fixes remote name in graph 'Open Branch on Remote'

main
Ramin Tadayon 1 anno fa
parent
commit
fe6b26928a
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 79D60DDE3DFB95F5
1 ha cambiato i file con 8 aggiunte e 1 eliminazioni
  1. +8
    -1
      src/plus/webviews/graph/graphWebview.ts

+ 8
- 1
src/plus/webviews/graph/graphWebview.ts Vedi File

@ -2180,13 +2180,20 @@ export class GraphWebviewProvider implements WebviewProvider {
private openBranchOnRemote(item?: GraphItemContext, clipboard?: boolean) {
if (isGraphItemRefContext(item, 'branch')) {
const { ref } = item.webviewItemValue;
let remote;
if (ref.remote) {
remote = getRemoteNameFromBranchName(ref.name);
} else if (ref.upstream != null) {
remote = getRemoteNameFromBranchName(ref.upstream.name);
}
return executeCommand<OpenOnRemoteCommandArgs>(Commands.OpenOnRemote, {
repoPath: ref.repoPath,
resource: {
type: RemoteResourceType.Branch,
branch: ref.name,
},
remote: ref.upstream?.name,
remote: remote,
clipboard: clipboard,
});
}

Caricamento…
Annulla
Salva