Procházet zdrojové kódy

Fixes #21380: Fix display of the background workers list on small screens (#21598)

Wrap the table in a `.table-responsive` to enable horizontal scrolling
within the table body.
Jeremy Stretch před 1 dnem
rodič
revize
969ae81574
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      netbox/templates/core/rq_queue_list.html

+ 1 - 1
netbox/templates/core/rq_queue_list.html

@@ -28,7 +28,7 @@
     </div>
   </div>
 
-  <div class="card">
+  <div class="card table-responsive">
     {% render_table table %}
   </div>
 {% endblock content %}