- {#if !applications || applications.length === 0}
+ {#if !applications || ownApplications.length === 0}
{/if}
{#if !application.gitSourceId || !application.destinationDockerId || !application.fqdn}
@@ -163,7 +163,7 @@
Team {application.teams[0].name}
{/if}
{#if application.fqdn}
-
{getDomain(application.fqdn)}
+
{getDomain(application.fqdn) || ''}
{/if}
{#if !application.gitSourceId || !application.destinationDockerId || !application.fqdn}
diff --git a/src/routes/databases/index.svelte b/src/routes/databases/index.svelte
index c160bc009..4ace17e27 100644
--- a/src/routes/databases/index.svelte
+++ b/src/routes/databases/index.svelte
@@ -46,7 +46,7 @@
- {#if !databases || databases.length === 0}
+ {#if !databases || ownDatabases.length === 0}
diff --git a/src/routes/destinations/index.svelte b/src/routes/destinations/index.svelte
index 84d1fc0bb..7c04f8aab 100644
--- a/src/routes/destinations/index.svelte
+++ b/src/routes/destinations/index.svelte
@@ -57,7 +57,7 @@
{/if}
- {#if !destinations || destinations.length === 0}
+ {#if !destinations || ownDestinations.length === 0}
diff --git a/src/routes/services/index.svelte b/src/routes/services/index.svelte
index 389ee8036..e829256c4 100644
--- a/src/routes/services/index.svelte
+++ b/src/routes/services/index.svelte
@@ -52,7 +52,7 @@
- {#if !services || services.length === 0}
+ {#if !services || ownServices.length === 0}
@@ -92,7 +92,7 @@
{service.teams[0].name}
{/if}
{#if service.fqdn}
-
{getDomain(service.fqdn)}
+
{getDomain(service.fqdn) || ''}
{/if}
{#if !service.type || !service.fqdn}
@@ -139,7 +139,7 @@
{service.teams[0].name}
{/if}
{#if service.fqdn}
-
{getDomain(service.fqdn)}
+
{getDomain(service.fqdn) || ''}
{/if}
{#if !service.type || !service.fqdn}
diff --git a/src/routes/sources/index.svelte b/src/routes/sources/index.svelte
index f8891531d..ba4e6e9c5 100644
--- a/src/routes/sources/index.svelte
+++ b/src/routes/sources/index.svelte
@@ -62,7 +62,7 @@
{/if}
- {#if !sources || sources.length === 0}
+ {#if !sources || ownSources.length === 0}
@@ -86,7 +86,7 @@
Configuration missing
{:else}
-
{getDomain(source.htmlUrl)}
+
{getDomain(source.htmlUrl) || ''}
{/if}