Переглянути джерело

Fixes contributors view

main
Eric Amodio 2 роки тому
джерело
коміт
20e3a85260
2 змінених файлів з 5 додано та 5 видалено
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -5
      src/env/node/git/localGitProvider.ts

+ 4
- 0
CHANGELOG.md Переглянути файл

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [Unreleased]
### Fixed
- Fixes regression with _Contributors_ view not working
## [12.2.0] - 2022-08-30
### Added

+ 1
- 5
src/env/node/git/localGitProvider.ts Переглянути файл

@ -2390,11 +2390,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
args.push(`--${ordering}-order`);
}
if (options?.authors?.length) {
args.push(
'--use-mailmap',
'--author',
...options.authors.map(a => `--author=^${a.name} <${a.email}>$`),
);
args.push('--use-mailmap', ...options.authors.map(a => `--author=^${a.name} <${a.email}>$`));
}
let hasMoreOverride;

Завантаження…
Відмінити
Зберегти