Browse Source

Fixes back button from stash list choice

main
Eric Amodio 5 years ago
parent
commit
5d28da5eef
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/commands/git/stash.ts

+ 1
- 2
src/commands/git/stash.ts View File

@ -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<typeof step> = yield step;

Loading…
Cancel
Save