Skip to content

Commit

Permalink
Fixes #605 - show more commits not working
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Dec 26, 2018
1 parent 0ae7692 commit db68af2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Fixed

- Fixes [#605](https://github.com/eamodio/vscode-gitlens/issues/605) — Show More Commits not working

## [9.2.3] - 2018-12-21

### Added
Expand Down
3 changes: 2 additions & 1 deletion src/views/viewCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ export class ViewCommands implements Disposable {
constructor() {
commands.registerCommand(
'gitlens.views.refreshNode',
(node: ViewNode, args?: RefreshNodeCommandArgs) => node.view.refreshNode(node, true, args),
(node: ViewNode, reset?: boolean, args?: RefreshNodeCommandArgs) =>
node.view.refreshNode(node, reset === undefined ? true : reset, args),
this
);
commands.registerCommand(
Expand Down

0 comments on commit db68af2

Please sign in to comment.