queue: make the tooltip content a bit more compact

it's quite hard to read on mobile otherwise
This commit is contained in:
Christoph Reiter
2023-11-02 17:48:59 +01:00
parent 76d4b4d39b
commit 505dfeec0a

View File

@@ -96,10 +96,10 @@
<dl>
{% for s in status %}
<dt>{{ s.type }}: <span class="text-{{ s.category or 'muted' }}">{{ s.status }}</span></dt>
<dd>
<dd><small class="text-muted">
{% if s.details %}
{{ s.details }}
{% endif %}</dd>
{% endif %}</small></dd>
{% endfor %}
</dl>
</template>