소스 검색

Updates focus view from review comments

main
Keith Daulton 1 년 전
committed by Keith Daulton
부모
커밋
06dd322de9
2개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. +1
    -1
      src/git/models/pullRequest.ts
  2. +0
    -3
      src/plus/webviews/focus/focusWebview.ts

+ 1
- 1
src/git/models/pullRequest.ts 파일 보기

@ -62,7 +62,7 @@ export interface PullRequestShape extends IssueOrPullRequest {
readonly comments?: number;
readonly mergeableState?: PullRequestMergeableState;
readonly reviewDecision?: PullRequestReviewDecision;
readonly reviewRequests?: { isCodeOwner: boolean; reviewer: PullRequestMember }[];
readonly reviewRequests?: PullRequestReviewer[];
readonly assignees?: PullRequestMember[];
}

+ 0
- 3
src/plus/webviews/focus/focusWebview.ts 파일 보기

@ -239,13 +239,11 @@ export class FocusWebview extends WebviewBase {
}
return (scoreB ?? 0) - (scoreA ?? 0);
});
// }
return this._pullRequests;
}
private async getMyIssues(richRepos: RepoWithRichRemote[]): Promise<SearchedIssue[]> {
// if (this._issues.length === 0) {
const allIssues = [];
for (const { remote } of richRepos) {
const issues = await this.container.git.getMyIssues(remote);
@ -256,7 +254,6 @@ export class FocusWebview extends WebviewBase {
}
this._issues = allIssues.sort((a, b) => b.issue.updatedDate.getTime() - a.issue.updatedDate.getTime());
// }
return this._issues;
}

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