fix Service formatting because eslint

This commit is contained in:
slice 2018-07-13 12:32:33 -07:00
parent acef927115
commit dd61950dcf
No known key found for this signature in database
GPG Key ID: 1508C19D7436A26D
1 changed files with 2 additions and 4 deletions

View File

@ -10,11 +10,9 @@ const Service = ({ graph, name, status, latency, description }) => (
{status ? '✅' : '🚫'} {status ? '✅' : '🚫'}
</div> </div>
<h2 className="service__title"> <h2 className="service__title">
{name} {name} {latency ? (
{latency ? (
<span className="service__title__latency"> <span className="service__title__latency">
{latency} {latency}ms
ms
</span> </span>
) : null} ) : null}
</h2> </h2>