From 794487b1a96bf4dbb19ffa035e04b7e52c91227f Mon Sep 17 00:00:00 2001 From: Kiwi Date: Thu, 9 May 2019 23:22:14 +0200 Subject: [PATCH 1/2] fix: bug where erasing the edit RTE content would respawn the original content (#2308) --- plugins/talk-plugin-rich-text/client/components/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/talk-plugin-rich-text/client/components/Editor.js b/plugins/talk-plugin-rich-text/client/components/Editor.js index f8d6b5346..d83412da9 100644 --- a/plugins/talk-plugin-rich-text/client/components/Editor.js +++ b/plugins/talk-plugin-rich-text/client/components/Editor.js @@ -22,7 +22,7 @@ class Editor extends React.Component { }; getHTML(props = this.props) { - if (props.input.richTextBody) { + if (props.input.richTextBody !== undefined) { return props.input.richTextBody; } return ( From d31969592c548971de56c129302380a946c03087 Mon Sep 17 00:00:00 2001 From: Kim Gardner Date: Thu, 9 May 2019 22:50:43 +0100 Subject: [PATCH 2/2] Remove quotes from Featured Comments (#2309) --- .../client/components/Comment.css | 9 --------- 1 file changed, 9 deletions(-) diff --git a/plugins/talk-plugin-featured-comments/client/components/Comment.css b/plugins/talk-plugin-featured-comments/client/components/Comment.css index bd4428091..d1ea527ba 100644 --- a/plugins/talk-plugin-featured-comments/client/components/Comment.css +++ b/plugins/talk-plugin-featured-comments/client/components/Comment.css @@ -42,19 +42,10 @@ text-align: left; letter-spacing: 0.1px; margin: 0; - quotes: '\201c' '\201d'; margin-bottom: 10px; word-wrap: break-word; } -.quote:before { - content: open-quote; -} - -.quote:after { - content: close-quote; -} - .footer { display: flex; }