the repository which powers this website
Diffstat (limited to 'themed/commit.html')
| -rw-r--r-- | themed/commit.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/themed/commit.html b/themed/commit.html index b7f9f59f..b630b739 100644 --- a/themed/commit.html +++ b/themed/commit.html @@ -27,7 +27,10 @@ <div class="px-3 py-2 flex items-top"> <div class="flex-1"> {# Description panel #} - <p class="text-lg font-semibold">{{ info->subject }}</p> + <div class="text-lg font-semibold">{{ info->subject }}</div> + {% if info-> msg %} + <div class="text-gray-500 pt-1">{{ info->msg }}</div> + {% endif %} </div> <div class="py-2"> <a href="{! cgit_shared_reporevlink_url("tree", ctx.qry.head, oid_to_hex(&commit->object.oid), ctx.qry.vpath); !}" class="p-2 text-sm text-white bg-blue-500 rounded-md hover:bg-blue-600">Browse Source</a> |