Small CP translation UI fix

This commit is contained in:
Pinga 2025-01-29 13:14:14 +02:00
parent 9b57cc60af
commit 6f75a60325

View file

@ -238,8 +238,8 @@
{% for ticket in tickets %}
<tr>
<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>
<td class="text-secondary">{{ __(ticket.status) }}</td>
<td class="text-secondary">{{ __(ticket.priority) }}</td>
</tr>
{% endfor %}
{% else %}