mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-07 02:51:50 +00:00
fix(tui): stabilize live todo progress
This commit is contained in:
parent
1566f1eecc
commit
f5552f92e2
14 changed files with 256 additions and 86 deletions
|
|
@ -28,10 +28,6 @@ const TranscriptPane = memo(function TranscriptPane({
|
|||
|
||||
return (
|
||||
<>
|
||||
<Box flexDirection="column" flexShrink={0}>
|
||||
<LiveTodoPanel />
|
||||
</Box>
|
||||
|
||||
<ScrollBox flexDirection="column" flexGrow={1} flexShrink={1} ref={transcript.scrollRef} stickyScroll>
|
||||
<Box flexDirection="column" paddingX={1}>
|
||||
{transcript.virtualHistory.topSpacer > 0 ? <Box height={transcript.virtualHistory.topSpacer} /> : null}
|
||||
|
|
@ -73,6 +69,10 @@ const TranscriptPane = memo(function TranscriptPane({
|
|||
</Box>
|
||||
</ScrollBox>
|
||||
|
||||
<Box flexDirection="column" flexShrink={0} paddingX={1}>
|
||||
<LiveTodoPanel />
|
||||
</Box>
|
||||
|
||||
<NoSelect flexShrink={0} marginLeft={1}>
|
||||
<TranscriptScrollbar scrollRef={transcript.scrollRef} t={ui.theme} />
|
||||
</NoSelect>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue