feat(ui): show info callout only when domain is set without exposed ports
This commit is contained in:
parent
9c8e5645b4
commit
8c4865215b
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue