소스 검색

Avoids double loop

main
Eric Amodio 2 년 전
부모
커밋
19dd58130c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/webviews/commitDetails/commitDetailsWebviewView.ts

+ 2
- 2
src/webviews/commitDetails/commitDetailsWebviewView.ts 파일 보기

@ -31,7 +31,7 @@ import type { DateTimeFormat } from '../../system/date';
import { debug, getLogScope } from '../../system/decorators/log';
import type { Deferrable } from '../../system/function';
import { debounce } from '../../system/function';
import { union } from '../../system/iterable';
import { map, union } from '../../system/iterable';
import type { PromiseCancelledError } from '../../system/promise';
import { getSettledValue } from '../../system/promise';
import type { Serialized } from '../../system/serialize';
@ -749,7 +749,7 @@ export class CommitDetailsWebviewView extends WebviewViewBase
};
}),
stats: commit.stats,
autolinks: autolinks ? Array.from(autolinks.values()).map(serializeAutolink) : undefined,
autolinks: autolinks != null ? [...map(autolinks.values(), serializeAutolink)] : undefined,
};
}

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