mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-08-01 12:20:35 +08:00
adjust the order of header icons
This commit is contained in:
@@ -381,6 +381,21 @@ function ConversationCard(props) {
|
||||
<ArchiveIcon size={16} />
|
||||
</span>
|
||||
)}
|
||||
a{' '}
|
||||
{conversationItemData.length > 0 && (
|
||||
<span
|
||||
title={t('Jump to bottom')}
|
||||
className="gpt-util-icon"
|
||||
onClick={() => {
|
||||
bodyRef.current.scrollTo({
|
||||
top: bodyRef.current.scrollHeight,
|
||||
behavior: 'smooth',
|
||||
})
|
||||
}}
|
||||
>
|
||||
<MoveToBottomIcon size={16} />
|
||||
</span>
|
||||
)}
|
||||
<span
|
||||
title={t('Save Conversation')}
|
||||
className="gpt-util-icon"
|
||||
@@ -397,22 +412,6 @@ function ConversationCard(props) {
|
||||
>
|
||||
<DesktopDownloadIcon size={16} />
|
||||
</span>
|
||||
<span>
|
||||
{conversationItemData.length > 0 && (
|
||||
<span
|
||||
title={t('Jump to bottom')}
|
||||
className="gpt-util-icon"
|
||||
onClick={() => {
|
||||
bodyRef.current.scrollTo({
|
||||
top: bodyRef.current.scrollHeight,
|
||||
behavior: 'smooth',
|
||||
})
|
||||
}}
|
||||
>
|
||||
<MoveToBottomIcon size={16} />
|
||||
</span>
|
||||
)}
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<hr />
|
||||
|
||||
Reference in New Issue
Block a user