fix: ensure comment divs span full width in MemoDetail

This commit is contained in:
Steven 2026-03-04 19:13:58 +08:00
parent def123232a
commit ce441644af
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ const MemoDetail = () => {
</div>
)}
{comments.map((comment) => (
<div key={`${comment.name}-${comment.displayTime}`} id={extractMemoIdFromName(comment.name)}>
<div className="w-full" key={`${comment.name}-${comment.displayTime}`} id={extractMemoIdFromName(comment.name)}>
<MemoView memo={comment} parentPage={locationState?.from} showCreator compact />
</div>
))}