fix: overflowing empty message

This commit is contained in:
Herculino Trotta
2025-01-05 01:45:11 -03:00
parent baae6bb96a
commit 905e80cffe
2 changed files with 4 additions and 4 deletions

View File

@@ -6,8 +6,8 @@
<div class="show-loading" hx-get="{% url 'categories_table_archived' %}" hx-trigger="updated from:window"
hx-swap="outerHTML">
{% endif %}
<div class="table-responsive">
{% if categories %}
<div class="table-responsive">
<c-config.search></c-config.search>
<table class="table table-hover">
<thead>
@@ -52,8 +52,8 @@
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<c-msg.empty title="{% translate "No categories" %}" remove-padding></c-msg.empty>
{% endif %}
</div>
</div>

View File

@@ -6,8 +6,8 @@
<div class="show-loading" hx-get="{% url 'tags_table_archived' %}" hx-trigger="updated from:window"
hx-swap="outerHTML">
{% endif %}
<div class="table-responsive">
{% if tags %}
<div class="table-responsive">
<c-config.search></c-config.search>
<table class="table table-hover">
<thead>
@@ -48,8 +48,8 @@
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<c-msg.empty title="{% translate "No tags" %}" remove-padding></c-msg.empty>
{% endif %}
</div>
</div>