diff --git a/CHANGELOG.md b/CHANGELOG.md index c7abc7a..ee2daa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Adds (re-adds) support for handling single files — closes [#321](https://github.com/eamodio/vscode-gitlens/issues/321) ### Fixed +- Fixes [#384](https://github.com/eamodio/vscode-gitlens/issues/384) - Absolute dates not always honored in GitLens Results explorer - Fixes [#385](https://github.com/eamodio/vscode-gitlens/issues/385) - Wrong git command to delete remote branch ## [8.3.2] - 2018-05-21 diff --git a/src/views/commitResultsNode.ts b/src/views/commitResultsNode.ts index 185ab89..aded0c4 100644 --- a/src/views/commitResultsNode.ts +++ b/src/views/commitResultsNode.ts @@ -24,7 +24,7 @@ export class CommitResultsNode extends ExplorerNode { } async getTreeItem(): Promise { - const label = CommitFormatter.fromTemplate(`Commit \${sha} ${Strings.pad(GlyphChars.Dash, 1, 1)} \${authorAgo}`, this.commit, Container.config.defaultDateFormat); + const label = CommitFormatter.fromTemplate(`Commit \${sha} ${Strings.pad(GlyphChars.Dash, 1, 1)} \${authorAgoOrDate}`, this.commit, Container.config.defaultDateFormat); const item = new TreeItem(label, TreeItemCollapsibleState.Expanded); item.contextValue = this.contextValue; return item;