Skip to content

Commit

Permalink
Merge pull request #382 from TripInfoWeb/dev_support
Browse files Browse the repository at this point in the history
feat: 공지사항 상세조회 reqct-quill 라이브러리 적용
  • Loading branch information
ssssksss authored Sep 24, 2024
2 parents 6408207 + 838d506 commit 9c7840c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/support/SupportNoticeDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ const SupportNoticeDetail = ({ data }: ISupportNoticeDetail) => {
<hr className="my-4 border-t-2 border-gray-300" />

{/* 본문 내용 */}
<div className="text-lg text-gray-800">{data.content}</div>
<p
className="break-words py-4 font-medium text-black"
dangerouslySetInnerHTML={{ __html: data.content }}
/>
</div>
</div>
);
Expand Down

0 comments on commit 9c7840c

Please sign in to comment.