feat(ui): show info callout only when domain is set without exposed ports

This commit is contained in:
ShadowArcanist 2026-03-26 13:26:50 +05:30
parent 9c8e5645b4
commit 8c4865215b

View file

@ -492,7 +492,7 @@ class="flex items-start gap-2 p-4 mb-4 text-sm rounded-lg bg-blue-50 dark:bg-blu
</div>
@endif
@endif
@if (empty($portsExposes) || $portsExposes === '0')
@if ((empty($portsExposes) || $portsExposes === '0') && !empty($fqdn))
<x-callout type="info" title="No ports exposed" class="mb-4">
This application does not expose any ports and will not be reachable through the proxy or your domains.
This behavior is normal for background workers, bots, or scheduled tasks.