Skip to content

Commit 38ae97a

Browse files
committed
πŸ›(front) fix parsing documents display
fix width display parsing + fix width doc title'
1 parent 19cf3b2 commit 38ae97a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and this project adheres to
1313
- ✨(front) add retry button
1414

1515
### Fixed
16-
16+
- πŸ›(front) fix parsing documents display
1717
- πŸ›(front) fix opacity input in error
1818
- πŸ›(front) resolve React hydration errors
1919
- πŸš‘οΈ(user) allow longer short names #182

β€Žsrc/frontend/apps/conversations/src/features/chat/components/AttachmentList.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const AttachmentList = ({
5555
>
5656
<Box
5757
$background="var(--c--theme--colors--greyscale-050)"
58-
$minWidth="200px"
58+
$width="200px"
5959
$direction="row"
6060
$gap="8px"
6161
$align="center"

β€Žsrc/frontend/apps/conversations/src/features/chat/components/Chat.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ export const Chat = ({
979979
</Text>
980980
</Box>
981981
) : null}
982-
{status === 'error' && (
982+
{status === 'error' && !isUploadingFiles && (
983983
<ChatError
984984
hasLastSubmission={!!lastSubmissionRef.current}
985985
onRetry={handleRetry}

β€Žsrc/frontend/apps/conversations/src/features/chat/components/ToolInvocationItem.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const ToolInvocationItem: React.FC<ToolInvocationItemProps> = ({
4040
$color="var(--c--theme--colors--greyscale-500)"
4141
$padding={{ all: 'sm' }}
4242
$radius="8px"
43-
$css="font-size: 0.9em;"
43+
$css="font-size: 0.9em; width: 100%; white-space: pre-wrap; word-wrap: break-word;"
4444
>
4545
{toolInvocation.state === 'result' ? (
4646
<Text>{`Parsing done: ${documentIdentifiers.join(', ')}`}</Text>

0 commit comments

Comments
Β (0)