Fix some tslint errors

I really need to get it running in my editor!
pull/1/head
Scott Nonnenberg 7 years ago
parent bd88407b78
commit fdc13d0af3
No known key found for this signature in database
GPG Key ID: 5F82280C35134661

@ -171,7 +171,7 @@ export class Quote extends React.Component<Props, {}> {
// We need the container to give us the flexibility to implement the iOS design. // We need the container to give us the flexibility to implement the iOS design.
return ( return (
<div className="close-container"> <div className="close-container">
<div className="close-button" onClick={onClick}></div> <div className="close-button" onClick={onClick} />
</div> </div>
); );
} }

@ -211,6 +211,6 @@ parent.emoji.signalReplace = (html: string): string => {
return html.replace( return html.replace(
/🔥/g, /🔥/g,
'<img src="node_modules/emoji-datasource-apple/img/apple/64/1f525.png"' + '<img src="node_modules/emoji-datasource-apple/img/apple/64/1f525.png"' +
'class="emoji" data-codepoints="1f525" title=":fire:">' 'class="emoji" data-codepoints="1f525" title=":fire:">',
); );
}; };

Loading…
Cancel
Save