From 9f581c82a91c5d3145f30f14460907e6bab30c37 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 7 Apr 2022 15:59:01 +0200 Subject: [PATCH] ui: fix --- src/routes/applications/index.svelte | 2 +- src/routes/databases/index.svelte | 2 +- src/routes/destinations/index.svelte | 2 +- src/routes/services/index.svelte | 2 +- src/routes/sources/index.svelte | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/routes/applications/index.svelte b/src/routes/applications/index.svelte index 6ced3899b..495dc5c48 100644 --- a/src/routes/applications/index.svelte +++ b/src/routes/applications/index.svelte @@ -47,7 +47,7 @@ {:else}
- {#if $session.teamId === '0'} + {#if $session.teamId === '0' && ownApplications.length > 0}
Your Team's Applications
{/if}
diff --git a/src/routes/databases/index.svelte b/src/routes/databases/index.svelte index a15572b45..b38add542 100644 --- a/src/routes/databases/index.svelte +++ b/src/routes/databases/index.svelte @@ -52,7 +52,7 @@
{:else}
- {#if $session.teamId === '0'} + {#if $session.teamId === '0' && ownDatabases.length > 0}
Your Team's Databases
{/if}
diff --git a/src/routes/destinations/index.svelte b/src/routes/destinations/index.svelte index 66e324472..cc5e53583 100644 --- a/src/routes/destinations/index.svelte +++ b/src/routes/destinations/index.svelte @@ -63,7 +63,7 @@
{:else}
- {#if $session.teamId === '0'} + {#if $session.teamId === '0' && ownDestinations.length > 0}
Your Team's Destinations
{/if}
diff --git a/src/routes/services/index.svelte b/src/routes/services/index.svelte index 806f8bbe5..2424c7ef4 100644 --- a/src/routes/services/index.svelte +++ b/src/routes/services/index.svelte @@ -57,7 +57,7 @@
{:else}
- {#if $session.teamId === '0'} + {#if $session.teamId === '0' && ownServices.length > 0}
Your Team's Applications
{/if}
diff --git a/src/routes/sources/index.svelte b/src/routes/sources/index.svelte index b08563bf3..bf372c779 100644 --- a/src/routes/sources/index.svelte +++ b/src/routes/sources/index.svelte @@ -61,7 +61,7 @@
{:else}
- {#if $session.teamId === '0'} + {#if $session.teamId === '0' && ownSources.length > 0}
Your Team's Applications
{/if}