ソースを参照

fix: contentRender some bug

Roxas 4 年 前
コミット
79eae3da0c
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      src/components/comment/common/ContentRender.tsx

+ 1
- 1
src/components/comment/common/ContentRender.tsx ファイルの表示

@@ -76,7 +76,7 @@ export const ContentRender = ({ data, renderContent: propsRenderContent }: { dat
76 76
   if (propsRenderContent) {
77 77
     return (
78 78
       <div className={styles.contentWrap}>
79
-        {propsRenderContent(data.content)}
79
+        {propsRenderContent(data)}
80 80
       </div>
81 81
     )
82 82
   }