소스 검색

Avoids using active selection for Graph toolbar

main
Eric Amodio 1 년 전
부모
커밋
a24ba9112e
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      src/plus/webviews/graph/graphWebview.ts

+ 3
- 3
src/plus/webviews/graph/graphWebview.ts 파일 보기

@ -2051,19 +2051,19 @@ export class GraphWebviewProvider implements WebviewProvider {
@debug()
private fetch(item?: GraphItemContext) {
const ref = this.getGraphItemRef(item, 'branch');
const ref = item != null ? this.getGraphItemRef(item, 'branch') : undefined;
void RepoActions.fetch(this.repository, ref);
}
@debug()
private pull(item?: GraphItemContext) {
const ref = this.getGraphItemRef(item, 'branch');
const ref = item != null ? this.getGraphItemRef(item, 'branch') : undefined;
void RepoActions.pull(this.repository, ref);
}
@debug()
private push(item?: GraphItemContext) {
const ref = this.getGraphItemRef(item);
const ref = item != null ? this.getGraphItemRef(item) : undefined;
void RepoActions.push(this.repository, undefined, ref);
}

불러오는 중...
취소
저장