Rework DNS results

This commit is contained in:
nemunaire 2025-10-21 17:00:15 +07:00
commit ec1ab7886e
5 changed files with 441 additions and 286 deletions

View file

@ -145,10 +145,10 @@
</div>
<!-- DNS Records -->
{#if report.dns_records && report.dns_records.length > 0}
{#if report.dns_results}
<div class="row mb-4" id="dns">
<div class="col-12">
<DnsRecordsCard dnsRecords={report.dns_records} />
<DnsRecordsCard dnsResults={report.dns_results} />
</div>
</div>
{/if}