mirror of https://github.com/usememos/memos.git
fix: ensure comment divs span full width in MemoDetail
This commit is contained in:
parent
def123232a
commit
ce441644af
|
|
@ -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>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Reference in New Issue