diff --git a/ts/components/Lightbox.tsx b/ts/components/Lightbox.tsx index a8e33c567..993f6ebeb 100644 --- a/ts/components/Lightbox.tsx +++ b/ts/components/Lightbox.tsx @@ -67,9 +67,7 @@ export class Lightbox extends React.Component { } public render() { - const { - imageURL, - } = this.props; + const { imageURL } = this.props; return (
{ authorColor, 'quoted-message', isFromMe ? 'from-me' : null, - !onClick ? 'no-click' : null, + !onClick ? 'no-click' : null ); return ( diff --git a/ts/styleguide/StyleGuideUtil.ts b/ts/styleguide/StyleGuideUtil.ts index b19483157..3dc0fcb40 100644 --- a/ts/styleguide/StyleGuideUtil.ts +++ b/ts/styleguide/StyleGuideUtil.ts @@ -212,6 +212,6 @@ parent.emoji.signalReplace = (html: string): string => { return html.replace( /🔥/g, '', + 'class="emoji" data-codepoints="1f525" title=":fire:">' ); };