|
@@ -431,9 +431,9 @@
|
|
|
<div class="flex items-center">{$i18n.t('Copy')}</div>
|
|
|
</DropdownMenu.Item>
|
|
|
|
|
|
- <hr class="border-gray-50 dark:border-gray-800 my-1" />
|
|
|
+ {#if !$temporaryChatEnabled && chat?.id}
|
|
|
+ <hr class="border-gray-50 dark:border-gray-800 my-1" />
|
|
|
|
|
|
- {#if chat?.id}
|
|
|
<DropdownMenu.Sub>
|
|
|
<DropdownMenu.SubTrigger
|
|
|
class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl select-none w-full"
|
|
@@ -461,19 +461,17 @@
|
|
|
{/each}
|
|
|
</DropdownMenu.SubContent>
|
|
|
</DropdownMenu.Sub>
|
|
|
- {/if}
|
|
|
|
|
|
- <DropdownMenu.Item
|
|
|
- class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
|
|
|
- on:click={() => {
|
|
|
- archiveChatHandler();
|
|
|
- }}
|
|
|
- >
|
|
|
- <ArchiveBox className="size-4" strokeWidth="1.5" />
|
|
|
- <div class="flex items-center">{$i18n.t('Archive')}</div>
|
|
|
- </DropdownMenu.Item>
|
|
|
+ <DropdownMenu.Item
|
|
|
+ class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
|
|
|
+ on:click={() => {
|
|
|
+ archiveChatHandler();
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ <ArchiveBox className="size-4" strokeWidth="1.5" />
|
|
|
+ <div class="flex items-center">{$i18n.t('Archive')}</div>
|
|
|
+ </DropdownMenu.Item>
|
|
|
|
|
|
- {#if !$temporaryChatEnabled}
|
|
|
<hr class="border-gray-50 dark:border-gray-800 my-1" />
|
|
|
|
|
|
<div class="flex p-1">
|