Sfoglia il codice sorgente

fix: contentRender some bug

Roxas 4 anni fa
parent
commit
79eae3da0c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      src/components/comment/common/ContentRender.tsx

+ 1
- 1
src/components/comment/common/ContentRender.tsx Vedi File

@@ -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
   }