Browse Source

Fixes git commands cancel button

main
Eric Amodio 5 years ago
parent
commit
4fc04f8e71
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/quickpicks/gitQuickPicks.ts

+ 1
- 1
src/quickpicks/gitQuickPicks.ts View File

@ -45,7 +45,7 @@ export namespace DirectiveQuickPickItem {
}
export function is(item: QuickPickItem): item is DirectiveQuickPickItem {
return item != null && 'cancelled' in item;
return item != null && 'directive' in item;
}
}

Loading…
Cancel
Save