Commit ce441644 authored by Steven's avatar Steven

fix: ensure comment divs span full width in MemoDetail

parent def12323
...@@ -142,7 +142,7 @@ const MemoDetail = () => { ...@@ -142,7 +142,7 @@ const MemoDetail = () => {
</div> </div>
)} )}
{comments.map((comment) => ( {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 /> <MemoView memo={comment} parentPage={locationState?.from} showCreator compact />
</div> </div>
))} ))}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment