Commit

Author:

Hash:

Timestamp:

+1 -1 +/-1 browse

Kevin Schoon [me@kevinschoon.com]

9c65920172206b778d52e9d899d29769c7376874

Tue, 13 May 2025 16:01:12 +0000 (6 months ago)

fix note detection
1diff --git a/ayllu/templates/log.html b/ayllu/templates/log.html
2index ab1b613..82c97ce 100644
3--- a/ayllu/templates/log.html
4+++ b/ayllu/templates/log.html
5 @@ -28,7 +28,7 @@
6 </span>
7 </td>
8 <td>
9- {% if let Some(_) = commit.has_note %}<div data-tooltip="Note">[N]</div>{% endif %}
10+ {% if let Some(has_note) = commit.has_note %}{% if has_note %}<div data-tooltip="Note">[N]</div>{% endif %}{% endif %}
11 {% if commit.is_extended %}<div data-tooltip="Extended Commit">[E]</div>{% endif %}
12 </td>
13 <td>{{ commit.epoch | friendly_time }}</td>