Skip to content

Commit

Permalink
Fix missing dates in the refs view
Browse files Browse the repository at this point in the history
  • Loading branch information
koutcher committed Oct 15, 2024
1 parent 7351f17 commit a0f77bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Bug fixes:
- Fix various issues with `diff.noprefix` and `--no-prefix`.
- Fix `Ctrl-C` behavior within the Readline prompt. (#1342)
- Fix message upon edit from diffstat without patch.
- Fix missing dates in the refs view.

Improvements:

Expand Down
3 changes: 2 additions & 1 deletion src/refs.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ refs_open(struct view *view, enum open_flags flags)
: opt_mailmap
? "--pretty=format:%H%x00%aN <%aE> %cd%x00%s"
: "--pretty=format:%H%x00%an <%ae> %cd%x00%s",
"--all", "--simplify-by-decoration", NULL
"--all", "--decorate-refs=", "--simplify-by-decoration",
NULL
};
enum status_code code;
const char *name = REFS_ALL_NAME;
Expand Down

0 comments on commit a0f77bf

Please sign in to comment.