Skip to content

Commit

Permalink
fix: [show domain] avoid overlaping table/image
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Sep 19, 2024
1 parent 8a267e2 commit 31e3da5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions var/www/templates/crawler/crawler_splash/showDomain.html
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ <h5>Capture {% if not dict_domain["crawler_history_items"] %}: Domain DOWN{% end
</div>

{% if dict_domain["crawler_history_items"] %}
<table class="table table-striped table-bordered table-hover" id="myTable_1">
<table class="table table-striped table-bordered table-hover" style="word-break: break-all;" id="myTable_1">
<thead class="thead-dark">
<tr>
<th>Urls</th>
Expand Down Expand Up @@ -469,13 +469,13 @@ <h5>Capture {% if not dict_domain["crawler_history_items"] %}: Domain DOWN{% end
<div>{{ dom_history["date"] }}</div>
</div>
</a>
</tr>
{% endfor %}
</tbody>
</table>
{%endif%}
</tr>
{% endfor %}
</tbody>
</table>
{%endif%}

</div>
</div>

<div class="col-12 col-xl-6">
{# button usafe if not tag safe <i class="fas fa-exclamation-triangle"></i> #}
Expand Down

0 comments on commit 31e3da5

Please sign in to comment.