|
@@ -66,7 +66,7 @@
|
|
|
let chatFadeStreamingText = true;
|
|
|
let collapseCodeBlocks = false;
|
|
|
let expandDetails = false;
|
|
|
- let useChatTitleAsTabTitle = true;
|
|
|
+ let showChatTitleInTab = true;
|
|
|
|
|
|
let showFloatingActionButtons = true;
|
|
|
let floatingActionButtons = null;
|
|
@@ -225,7 +225,7 @@
|
|
|
temporaryChatByDefault = $settings?.temporaryChatByDefault ?? false;
|
|
|
chatDirection = $settings?.chatDirection ?? 'auto';
|
|
|
userLocation = $settings?.userLocation ?? false;
|
|
|
- useChatTitleAsTabTitle = $settings?.useChatTitleAsTabTitle ?? true;
|
|
|
+ showChatTitleInTab = $settings?.showChatTitleInTab ?? true;
|
|
|
|
|
|
notificationSound = $settings?.notificationSound ?? true;
|
|
|
notificationSoundAlways = $settings?.notificationSoundAlways ?? false;
|
|
@@ -334,16 +334,16 @@
|
|
|
<div>
|
|
|
<div class=" py-0.5 flex w-full justify-between">
|
|
|
<div id="use-chat-title-as-tab-title-label" class=" self-center text-xs">
|
|
|
- {$i18n.t("Use the chat title as the browser's tab title")}
|
|
|
+ {$i18n.t('Display chat title in tab')}
|
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center gap-2 p-1">
|
|
|
<Switch
|
|
|
ariaLabelledbyId="use-chat-title-as-tab-title-label"
|
|
|
tooltip={true}
|
|
|
- bind:state={useChatTitleAsTabTitle}
|
|
|
+ bind:state={showChatTitleInTab}
|
|
|
on:change={() => {
|
|
|
- saveSettings({ useChatTitleAsTabTitle });
|
|
|
+ saveSettings({ showChatTitleInTab });
|
|
|
}}
|
|
|
/>
|
|
|
</div>
|