Skip to content

Commit 3e50066

Browse files
committed
Fixes #3285 'defaultDateStyle' configuration being ignored by rebaseEditor
1 parent 829d97e commit 3e50066

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ A big thanks to the people that have contributed to this project 🙏❤️:
446446
- yutotnh ([@yutotnh](https://github.com/yutotnh)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=yutotnh)
447447
- may ([@m4rch3n1ng](https://github.com/m4rch3n1ng)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=m4rch3n1ng)
448448
- bm-w ([@bm-w](https://github.com/bm-w)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=bm-w)
449+
- Tyler Johnson ([@TJohnsonSE](https://github.com/TJohnsonSE)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=TJohnsonSE)
449450

450451
Also special thanks to the people that have provided support, testing, brainstorming, etc:
451452

src/webviews/rebase/rebaseEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ async function parseRebaseTodo(
657657
author: commit.author.name,
658658
committer: commit.committer.name,
659659
date: commit.formatDate(defaultDateFormat),
660-
dateFromNow: commit.formatDateFromNow(),
660+
dateFromNow: commit.formattedDate,
661661
message: emojify(commit.message ?? commit.summary),
662662
};
663663
}

0 commit comments

Comments
 (0)