Skip to content

Commit db68af2

Browse files
committed
Fixes #605 - show more commits not working
1 parent 0ae7692 commit db68af2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

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

7+
## [Unreleased]
8+
9+
### Fixed
10+
11+
- Fixes [#605](https://github.com/eamodio/vscode-gitlens/issues/605) — Show More Commits not working
12+
713
## [9.2.3] - 2018-12-21
814

915
### Added

src/views/viewCommands.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ export class ViewCommands implements Disposable {
5252
constructor() {
5353
commands.registerCommand(
5454
'gitlens.views.refreshNode',
55-
(node: ViewNode, args?: RefreshNodeCommandArgs) => node.view.refreshNode(node, true, args),
55+
(node: ViewNode, reset?: boolean, args?: RefreshNodeCommandArgs) =>
56+
node.view.refreshNode(node, reset === undefined ? true : reset, args),
5657
this
5758
);
5859
commands.registerCommand(

0 commit comments

Comments
 (0)