diff --git a/src/lib/components/chat/Settings/Tools/Connection.svelte b/src/lib/components/chat/Settings/Tools/Connection.svelte index 09631948fa..05888eadd5 100644 --- a/src/lib/components/chat/Settings/Tools/Connection.svelte +++ b/src/lib/components/chat/Settings/Tools/Connection.svelte @@ -52,10 +52,17 @@ -
- {connection?.info?.name ?? connection?.url} - {connection?.info?.id ?? ''} -
+ + {#if connection?.info?.name} +
+ {connection?.info?.name ?? connection?.url} + {connection?.info?.id ?? ''} +
+ {:else} +
+ {connection?.url} +
+ {/if}