浏览代码

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

正在加载...
取消
保存