소스 검색

Removes extra refresh call

main
Eric Amodio 2 년 전
부모
커밋
0e568e9b30
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -2
      src/views/nodes/commitNode.ts

+ 1
- 2
src/views/nodes/commitNode.ts 파일 보기

@ -98,6 +98,7 @@ export class CommitNode extends ViewRefNode
new PullRequestNode(this.view as ViewsWithCommits, this, pr, commit),
);
}
// Refresh this node to show a spinner while the pull request is loading
this.view.triggerNodeChange(this);
});
@ -107,8 +108,6 @@ export class CommitNode extends ViewRefNode
() => this.view.triggerNodeChange(this),
() => {},
);
queueMicrotask(() => this.view.triggerNodeChange(this));
});
}
}

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