mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-13 23:48:53 +00:00
fix: add max width
This commit is contained in:
parent
86ed750a38
commit
c265f5410d
@ -397,7 +397,9 @@ export function PromptInputAttachments({
|
|||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
{attachments.files.map((file) => (
|
{attachments.files.map((file) => (
|
||||||
<Fragment key={file.id}>{children(file)}</Fragment>
|
<Fragment key={file.id}>
|
||||||
|
<div className="max-w-60">{children(file)}</div>
|
||||||
|
</Fragment>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user