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