feat(frontend): make external nodes table responsive

This commit is contained in:
Whispering Wind
2025-08-10 00:14:25 +03:30
committed by GitHub
parent 68822c5f4b
commit 68bd4f2b0a

View File

@ -236,16 +236,18 @@
<h3 class="card-title">External Nodes</h3>
</div>
<div class="card-body">
<table class="table table-bordered table-striped" id="nodes_table">
<thead>
<tr>
<th>Node Name</th>
<th>IP Address / Domain</th>
<th>Action</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="table-responsive">
<table class="table table-bordered table-striped" id="nodes_table">
<thead>
<tr>
<th>Node Name</th>
<th>IP Address / Domain</th>
<th>Action</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div id="no_nodes_message" class="alert alert-info" style="display: none;">
No external nodes have been configured.
</div>
@ -1416,4 +1418,4 @@
});
</script>
{% endblock %}
{% endblock %}