mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-19 12:24:46 +08: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