소스 검색

Fixes label sanitization -- it was too aggressive

main
Eric Amodio 5 년 전
부모
커밋
547f76cba4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/commands/gitCommands.ts

+ 1
- 1
src/commands/gitCommands.ts 파일 보기

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

불러오는 중...
취소
저장