소스 검색

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 1 개월 전
부모
커밋
969ae81574
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 %}