Bladeren bron

Fixes label sanitization -- it was too aggressive

main
Eric Amodio 5 jaren geleden
bovenliggende
commit
547f76cba4
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. +1
    -1
      src/commands/gitCommands.ts

+ 1
- 1
src/commands/gitCommands.ts Bestand weergeven

@ -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

Laden…
Annuleren
Opslaan