diff --git a/src/components/widgets/quote/Quote.jsx b/src/components/widgets/quote/Quote.jsx index 5a6044e0..a137ec4d 100644 --- a/src/components/widgets/quote/Quote.jsx +++ b/src/components/widgets/quote/Quote.jsx @@ -262,7 +262,7 @@ export default class Quote extends PureComponent { const authorimgdata = await this.getAuthorImg(data.author); const object = { - quote: '"' + data.quote + '"', + quote: '"' + data.quote.replace(/\s+$/g, '') + '"', author: data.author, authorlink: this.getAuthorLink(data.author), authorimg: authorimgdata.authorimg,