Browse Source

Fixes label sanitization -- it was too aggressive

main
Eric Amodio 5 years ago
parent
commit
547f76cba4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/commands/gitCommands.ts

+ 1
- 1
src/commands/gitCommands.ts View File

@ -22,7 +22,7 @@ import { SwitchGitCommand, SwitchGitCommandArgs } from './git/switch';
import { Container } from '../container';
import { configuration } from '../configuration';
const sanitizeLabel = /\$\(.+?\)|\W/g;
const sanitizeLabel = /\$\(.+?\)|\s/g;
export type GitCommandsCommandArgs =
| CherryPickGitCommandArgs

Loading…
Cancel
Save