Skip to content

Commit 7b83d7b

Browse files
authored
Fix issue with quickpick filter not reseting #963 (#965)
1 parent 22bfe92 commit 7b83d7b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/controllers/codeSnippetController.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export class CodeSnippetController {
8181
quickPick.onDidAccept(() => {
8282
const selectedItem = quickPick.selectedItems[0];
8383
if (quickPick.step === 1) {
84+
quickPick.value = '';
8485
quickPick.step++;
8586
quickPick.buttons = [QuickInputButtons.Back];
8687
target = selectedItem as any as CodeSnippetTarget;

0 commit comments

Comments
 (0)