jj: Move git_head display to end of single-log line

It was moving about the change dates too much and not super necessary
for information, so moved it further down the line.
This commit is contained in:
Marty Oehme 2025-06-02 10:02:13 +02:00
parent 86d358627c
commit 4d8f554197
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -46,7 +46,6 @@ if(root,
if(conflict, label("conflict", "conflict")), if(conflict, label("conflict", "conflict")),
bookmarks, bookmarks,
tags, tags,
if(git_head, label("git_head", "git_head()")),
if(description, if(description,
description.first_line(), description.first_line(),
label(if(empty, "empty"), description_placeholder), label(if(empty, "empty"), description_placeholder),
@ -58,6 +57,7 @@ if(root,
if(config("ui.show-cryptographic-signatures").as_boolean(), if(config("ui.show-cryptographic-signatures").as_boolean(),
format_short_cryptographic_signature(signature)), format_short_cryptographic_signature(signature)),
if(empty, label("empty", "(empty)")), if(empty, label("empty", "(empty)")),
if(git_head, label("git_head", "git_head()")),
) ++ "\n", ) ++ "\n",
), ),
) )