Parcourir la source

Fixes contributors view

main
Eric Amodio il y a 2 ans
Parent
révision
20e3a85260
2 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -5
      src/env/node/git/localGitProvider.ts

+ 4
- 0
CHANGELOG.md Voir le fichier

@ -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 Voir le fichier

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

Chargement…
Annuler
Enregistrer