Browse Source

Fixes issue with replacing existing results

main
Eric Amodio 7 years ago
parent
commit
a55d1d42aa
2 changed files with 5 additions and 0 deletions
  1. +3
    -0
      CHANGELOG.md
  2. +2
    -0
      src/views/resultsExplorer.ts

+ 3
- 0
CHANGELOG.md View File

@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Added
- Adds `gitlens.defaultDateStyle` setting to specify how dates will be displayed by default -- closes [#89](https://github.com/eamodio/vscode-gitlens/issues/89)
### Fixed
- Fixes issue where the `GitLens Results` view wouldn't properly update when replacing existing results
## [7.2.0] - 2018-01-01
### Added
- Adds on-demand **heatmap annotations** of the whole file -- closes [#182](https://github.com/eamodio/vscode-gitlens/issues/182)

+ 2
- 0
src/views/resultsExplorer.ts View File

@ -179,6 +179,8 @@ export class ResultsExplorer implements TreeDataProvider {
this._roots.forEach(r => r.dispose());
this._roots = [];
this.refresh();
}
private clearResultsNode(node: ExplorerNode) {

Loading…
Cancel
Save