Procházet zdrojové kódy

Fixes contributors view

main
Eric Amodio před 2 roky
rodič
revize
20e3a85260
2 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -5
      src/env/node/git/localGitProvider.ts

+ 4
- 0
CHANGELOG.md Zobrazit soubor

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

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

Načítá se…
Zrušit
Uložit