mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-23 08:25:57 +00:00
Merge pull request #24 from LofiSu/fix/upload-files-alignment
fix: 修复用户消息中上传文件的右对齐显示
This commit is contained in:
@@ -332,7 +332,7 @@ function UploadedFilesList({
|
|||||||
if (files.length === 0) return null;
|
if (files.length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mb-2 flex flex-wrap gap-2">
|
<div className="mb-2 flex flex-wrap justify-end gap-2">
|
||||||
{files.map((file, index) => (
|
{files.map((file, index) => (
|
||||||
<UploadedFileCard
|
<UploadedFileCard
|
||||||
key={`${file.path}-${index}`}
|
key={`${file.path}-${index}`}
|
||||||
|
|||||||
Reference in New Issue
Block a user