Explorar el Código

Fixes #482 - UI displays "undefined" in results panel when comparing

main
Eric Amodio hace 6 años
padre
commit
0e770816a7
Se han modificado 2 ficheros con 2 adiciones y 1 borrados
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/system/string.ts

+ 1
- 0
CHANGELOG.md Ver fichero

@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [Unreleased]
### Fixed
- Fixes [#477](https://github.com/eamodio/vscode-gitlens/issues/477) - Can't load any GitLens features or UI
- Fixes [#482](https://github.com/eamodio/vscode-gitlens/issues/482) - UI displays "undefined" in results panel when comparing
## [8.5.5] - 2018-08-18
### Added

+ 1
- 1
src/system/string.ts Ver fichero

@ -116,7 +116,7 @@ export namespace Strings {
if (options === undefined) return `${count} ${s}${count === 1 ? '' : 's'}`;
return `${count === 0 ? options.zero || count : options.number || count} ${
count === 1 ? s : options.plural || `${s}${options.suffix}`
count === 1 ? s : options.plural || `${s}${options.suffix || 's'}`
}`;
}

Cargando…
Cancelar
Guardar