Several UI fixes

This commit is contained in:
Pinga 2024-02-17 14:13:00 +02:00
parent e7cc84166c
commit bf45440770
3 changed files with 6 additions and 6 deletions

View file

@ -211,7 +211,7 @@
{% if tickets|length > 0 %}
{% for ticket in tickets %}
<tr>
<td><a href="/domain/view/{{ ticket.id }}">{{ ticket.subject }}</a></td>
<td><a href="/ticket/{{ ticket.id }}">{{ ticket.subject|length > 30 ? (ticket.subject|slice(0, 30) ~ '…') : ticket.subject }}</a></td>
<td class="text-secondary">{{ ticket.status }}</td>
<td class="text-secondary">{{ ticket.priority }}</td>
</tr>