ui: fix
This commit is contained in:
parent
91bb323e84
commit
f60c640dc6
1 changed files with 6 additions and 2 deletions
|
|
@ -107,7 +107,7 @@
|
||||||
</h1>
|
</h1>
|
||||||
<div class="h-10">
|
<div class="h-10">
|
||||||
{#if application?.fqdn}
|
{#if application?.fqdn}
|
||||||
<h2>{application?.fqdn.replace('https://','').replace('http://','')}</h2>
|
<h2>{application?.fqdn.replace('https://', '').replace('http://', '')}</h2>
|
||||||
{:else if !application.settings.isBot && !application?.fqdn}
|
{:else if !application.settings.isBot && !application?.fqdn}
|
||||||
<h2 class="text-red-500">Not configured</h2>
|
<h2 class="text-red-500">Not configured</h2>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
@ -187,7 +187,7 @@
|
||||||
<h1 class="font-bold text-xl truncate">{service.name}</h1>
|
<h1 class="font-bold text-xl truncate">{service.name}</h1>
|
||||||
<div class="h-10">
|
<div class="h-10">
|
||||||
{#if service?.fqdn}
|
{#if service?.fqdn}
|
||||||
<h2>{service?.fqdn.replace('https://','').replace('http://','')}</h2>
|
<h2>{service?.fqdn.replace('https://', '').replace('http://', '')}</h2>
|
||||||
{:else}
|
{:else}
|
||||||
<h2 class="text-red-500">Not configured</h2>
|
<h2 class="text-red-500">Not configured</h2>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
@ -245,7 +245,11 @@
|
||||||
<div class="h-10">
|
<div class="h-10">
|
||||||
<h1 class="font-bold text-xl truncate">{database.name}</h1>
|
<h1 class="font-bold text-xl truncate">{database.name}</h1>
|
||||||
<div class="h-10">
|
<div class="h-10">
|
||||||
|
{#if database?.version}
|
||||||
<h2>{database?.version}</h2>
|
<h2>{database?.version}</h2>
|
||||||
|
{:else}
|
||||||
|
<h2 class="text-red-500">Not configured</h2>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-end items-end space-x-2 h-10">
|
<div class="flex justify-end items-end space-x-2 h-10">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue