소스 검색

Adds protection if hack breaks

main
Eric Amodio 2 년 전
부모
커밋
4be5db11e8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/commands/gitCommands.ts

+ 2
- 2
src/commands/gitCommands.ts 파일 보기

@ -419,7 +419,7 @@ export class GitCommandsCommand extends Command {
// Manually trigger `onDidChangeValue`, because the InputBox seems to fail to call it properly
if (step.value != null) {
// HACK: This is fragile!
(input as any)._onDidChangeValueEmitter.fire(input.value);
(input as any)._onDidChangeValueEmitter?.fire(input.value);
}
});
} finally {
@ -786,7 +786,7 @@ export class GitCommandsCommand extends Command {
if (step.value != null && selectValueWhenShown) {
// HACK: This is fragile!
try {
(quickpick as any)._onDidChangeValueEmitter.fire(quickpick.value);
(quickpick as any)._onDidChangeValueEmitter?.fire(quickpick.value);
} catch {
debugger;
}

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