Place chat button on the same place as inbox (#9871)

This commit is contained in:
Artyom Savchenko
2025-09-16 22:04:29 +07:00
committed by GitHub
parent cf90627186
commit b2c91b8ff4
@@ -48,14 +48,6 @@
<div class="hulyNavPanel-header withButton small inbox-header">
<span class="overflow-label"><Label label={chat.string.Inbox} /></span>
<div class="flex-row-center flex-gap-2">
<ModernButton
label={chat.string.Chat}
icon={chat.icon.ChatBubble}
size="small"
iconSize="small"
on:click={goToChat}
/>
<div class="spacer" />
<ModernButton
tooltip={{ label: chat.string.ClearAll }}
icon={IconDelete}
@@ -65,6 +57,14 @@
loading={clearing}
/>
<ModernButton icon={IconSettings} on:click={click} size="small" iconSize="small" />
<div class="spacer" />
<ModernButton
label={chat.string.Chat}
icon={chat.icon.ChatBubble}
size="small"
iconSize="small"
on:click={goToChat}
/>
</div>
</div>