File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/frontend/apps/conversations/src/features/chat/components Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 >
You canβt perform that action at this time.
0 commit comments