Skip to content

Commit 4dc5ce9

Browse files
committed
Fixes #384 - Absolute date not honored in GitLens Results explorer
1 parent a1fb3f0 commit 4dc5ce9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
99
- Adds (re-adds) support for handling single files — closes [#321](https://github.com/eamodio/vscode-gitlens/issues/321)
1010

1111
### Fixed
12+
- Fixes [#384](https://github.com/eamodio/vscode-gitlens/issues/384) - Absolute dates not always honored in GitLens Results explorer
1213
- Fixes [#385](https://github.com/eamodio/vscode-gitlens/issues/385) - Wrong git command to delete remote branch
1314

1415
## [8.3.2] - 2018-05-21

src/views/commitResultsNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class CommitResultsNode extends ExplorerNode {
2424
}
2525

2626
async getTreeItem(): Promise<TreeItem> {
27-
const label = CommitFormatter.fromTemplate(`Commit \${sha} ${Strings.pad(GlyphChars.Dash, 1, 1)} \${authorAgo}`, this.commit, Container.config.defaultDateFormat);
27+
const label = CommitFormatter.fromTemplate(`Commit \${sha} ${Strings.pad(GlyphChars.Dash, 1, 1)} \${authorAgoOrDate}`, this.commit, Container.config.defaultDateFormat);
2828
const item = new TreeItem(label, TreeItemCollapsibleState.Expanded);
2929
item.contextValue = this.contextValue;
3030
return item;

0 commit comments

Comments
 (0)