From fa2d762f2be58c04b5c4b254b7032d20eebc2798 Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Mon, 27 Apr 2026 23:40:50 +0200 Subject: [PATCH] Fixes #22002: Enable horizontal scrolling for Context Table Panels (#22009) --- netbox/templates/ui/panels/context_table.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/netbox/templates/ui/panels/context_table.html b/netbox/templates/ui/panels/context_table.html index 1297defe5..134ecdfe8 100644 --- a/netbox/templates/ui/panels/context_table.html +++ b/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' %} +
+ {% render_table table 'inc/table.html' %} +
{% endblock panel_content %}