Skip to content

Commit 0be52ea

Browse files
massi-angbigadsoleiman
authored andcommitted
feat(multimodal): multiple images upload
1 parent 1ece675 commit 0be52ea

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/user-interface/react-app/src/components/chatbot/chat-message.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
Container,
55
ExpandableSection,
66
Popover,
7+
SpaceBetween,
78
Spinner,
89
StatusIndicator,
910
Tabs,
@@ -317,6 +318,7 @@ export default function ChatMessage(props: ChatMessageProps) {
317318
href={file.url as string}
318319
target="_blank"
319320
rel="noreferrer"
321+
style={{ marginLeft: "5px", marginRight: "5px" }}
320322
>
321323
<img
322324
src={file.url as string}

lib/user-interface/react-app/src/components/chatbot/image-dialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export default function ImageDialog(props: ImageDialogProps) {
185185
limitShowMore: "Show more files",
186186
errorIconAriaLabel: "Error",
187187
}}
188-
multiple={false}
188+
multiple={true}
189189
errorText={error}
190190
showFileThumbnail
191191
tokenLimit={3}

0 commit comments

Comments
 (0)