From 5d28da5eefd4f96c6e75385cc232c3880720a60d Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Fri, 13 Sep 2019 02:48:26 -0400 Subject: [PATCH] Fixes back button from stash list choice --- src/commands/git/stash.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/git/stash.ts b/src/commands/git/stash.ts index 3500f70..fe93da2 100644 --- a/src/commands/git/stash.ts +++ b/src/commands/git/stash.ts @@ -519,7 +519,7 @@ export class StashGitCommand extends QuickCommandBase { // } const gitCommandArgs: GitCommandsCommandArgs = { - command: 'search', + command: 'stash', state: { ...state } }; @@ -552,7 +552,6 @@ export class StashGitCommand extends QuickCommandBase { }`, placeholder: 'Please provide a stash message', value: state.message - // validate: (value: string | undefined): [boolean, string | undefined] => [value != null, undefined] }); const value: StepSelection = yield step;