Skip to content

Commit ee2f503

Browse files
committed
Markdown needs to be contained in div
1 parent 40a305f commit ee2f503

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/Board.jsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,9 @@ export default function Board(props) {
692692
</div>
693693

694694
<div className="flex flex-row justify-between">
695-
<ReactMarkdown children={card.content} components={components} remarkPlugins={[remarkGfm]} />
695+
<div>
696+
<ReactMarkdown children={card.content} components={components} remarkPlugins={[remarkGfm]} />
697+
</div>
696698
<div className="">
697699
<button className={`bg-white rounded ${true && "invisible group-hover:visible"}`} onClick={() => cardEditToggle(card.id)}><FontAwesomeIcon icon={faPencil} /></button>
698700
</div>

0 commit comments

Comments
 (0)