Merge pull request #24 from LofiSu/fix/upload-files-alignment

fix: 修复用户消息中上传文件的右对齐显示
This commit is contained in:
Henry Li
2026-02-06 21:53:01 +08:00
committed by GitHub

View File

@@ -332,7 +332,7 @@ function UploadedFilesList({
if (files.length === 0) return null;
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) => (
<UploadedFileCard
key={`${file.path}-${index}`}