Explorar el Código

Fixes #22002: Enable horizontal scrolling for Context Table Panels (#22009)

Martin Hauser hace 1 mes
padre
commit
fa2d762f2b
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      netbox/templates/ui/panels/context_table.html

+ 3 - 1
netbox/templates/ui/panels/context_table.html

@@ -2,5 +2,7 @@
 {% load render_table from django_tables2 %}
 
 {% block panel_content %}
-  {% render_table table 'inc/table.html' %}
+  <div class="table-responsive">
+    {% render_table table 'inc/table.html' %}
+  </div>
 {% endblock panel_content %}