File tree Expand file tree Collapse file tree 1 file changed +15
-16
lines changed
src/components/ConversationCard Expand file tree Collapse file tree 1 file changed +15
-16
lines changed Original file line number Diff line number Diff line change @@ -381,6 +381,21 @@ function ConversationCard(props) {
381
381
< ArchiveIcon size = { 16 } />
382
382
</ span >
383
383
) }
384
+ a{ ' ' }
385
+ { conversationItemData . length > 0 && (
386
+ < span
387
+ title = { t ( 'Jump to bottom' ) }
388
+ className = "gpt-util-icon"
389
+ onClick = { ( ) => {
390
+ bodyRef . current . scrollTo ( {
391
+ top : bodyRef . current . scrollHeight ,
392
+ behavior : 'smooth' ,
393
+ } )
394
+ } }
395
+ >
396
+ < MoveToBottomIcon size = { 16 } />
397
+ </ span >
398
+ ) }
384
399
< span
385
400
title = { t ( 'Save Conversation' ) }
386
401
className = "gpt-util-icon"
@@ -397,22 +412,6 @@ function ConversationCard(props) {
397
412
>
398
413
< DesktopDownloadIcon size = { 16 } />
399
414
</ span >
400
- < span >
401
- { conversationItemData . length > 0 && (
402
- < span
403
- title = { t ( 'Jump to bottom' ) }
404
- className = "gpt-util-icon"
405
- onClick = { ( ) => {
406
- bodyRef . current . scrollTo ( {
407
- top : bodyRef . current . scrollHeight ,
408
- behavior : 'smooth' ,
409
- } )
410
- } }
411
- >
412
- < MoveToBottomIcon size = { 16 } />
413
- </ span >
414
- ) }
415
- </ span >
416
415
</ span >
417
416
</ div >
418
417
< hr />
You can’t perform that action at this time.
0 commit comments