ui-log: show ellipsis if detailed commit message is available

The existence of a detailed commit message may be of interst even
if only the subject is shown by default.

Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
Christian Hesse 2022-12-16 18:37:10 +01:00
parent 00ecfaadea
commit 0981738206
2 changed files with 10 additions and 0 deletions

View file

@ -240,6 +240,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
}
cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
oid_to_hex(&commit->object.oid), ctx.qry.vpath);
if (!ctx.qry.showmsg && strlen(info->msg) > 0)
html("<span class='msg-avail'>...</span>");
show_commit_decorations(commit);
html("</td><td>");
cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");