fix Service formatting because eslint
This commit is contained in:
parent
acef927115
commit
dd61950dcf
1 changed files with 2 additions and 4 deletions
|
@ -10,11 +10,9 @@ const Service = ({ graph, name, status, latency, description }) => (
|
|||
{status ? '✅' : '🚫'}
|
||||
</div>
|
||||
<h2 className="service__title">
|
||||
{name}
|
||||
{latency ? (
|
||||
{name} {latency ? (
|
||||
<span className="service__title__latency">
|
||||
{latency}
|
||||
ms
|
||||
{latency}ms
|
||||
</span>
|
||||
) : null}
|
||||
</h2>
|
||||
|
|
Loading…
Reference in a new issue