From f6d5321c1e73f03c2ffa4987005962fa52e11348 Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Thu, 2 Sep 2021 16:49:54 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E8=B0=83=E6=95=B4bbcode=E7=BA=AF?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E6=8D=A2=E8=A1=8C=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx b/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx index 956663b2..86232356 100644 --- a/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx +++ b/web/plugins/com.msgbyte.bbcode/src/tags/PlainText.tsx @@ -2,6 +2,8 @@ import React from 'react'; import type { TagProps } from '../bbcode/type'; export const PlainText: React.FC = React.memo((props) => ( -
{props.children}
+
+    {props.children}
+  
)); PlainText.displayName = 'PlainText';