From d91f40177e1a63afdd1d2983fcd62e6403fcc18e Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 12 Apr 2018 17:00:21 -0700 Subject: [PATCH] Quote.tsx: Fix tslint errors I really need to get tslint editor integration in place. --- ts/components/conversation/Quote.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/ts/components/conversation/Quote.tsx b/ts/components/conversation/Quote.tsx index 302aeb12e..db3a1da7f 100644 --- a/ts/components/conversation/Quote.tsx +++ b/ts/components/conversation/Quote.tsx @@ -150,7 +150,7 @@ export class Quote extends React.Component { : i18n('replyingToYourself') : i18n('replyingTo', [authorName]); - return
{label}
; + return
{label}
; } public render() { @@ -169,13 +169,14 @@ export class Quote extends React.Component { const authorProfileElement = authorProfileName ? ~{authorProfileName} : null; + const classes = classnames( + authorColor, + 'quote', + isFromMe ? 'from-me' : null, + ); return ( -
+
{this.renderIOSLabel()}