This commit is contained in:
Andras Bacsai 2023-06-21 12:48:32 +02:00
parent 12cd01783b
commit 7032fd782e

View File

@ -10,12 +10,21 @@
<ul tabindex="0" <ul tabindex="0"
class="relative text-xs text-white normal-case rounded -ml-28 min-w-max menu bg-coolgray-200"> class="relative text-xs text-white normal-case rounded -ml-28 min-w-max menu bg-coolgray-200">
<li> <li>
<a target="_blank" @if ($server->name === 'localhost')
class="text-xs text-white rounded-none hover:no-underline hover:bg-coollabs" <a target="_blank"
href="{{ base_ip() }}:8080"> class="text-xs text-white rounded-none hover:no-underline hover:bg-coollabs"
Traefik Dashboard href="{{ base_ip() }}:8080">
<x-external-link /> Traefik Dashboard
</a> <x-external-link />
</a>
@else
<a target="_blank"
class="text-xs text-white rounded-none hover:no-underline hover:bg-coollabs"
href="{{ $server->ip }}:8080">
Traefik Dashboard
<x-external-link />
</a>
@endif
</li> </li>
</ul> </ul>
</div> </div>