uiux(embark-ui/HomeContainer): show state of connected processes

This commit is contained in:
Pascal Precht 2018-10-11 16:21:31 +02:00
parent be3c792144
commit 2d0dfdf6be
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ const Process = ({process}) => (
<i className={iconClasses(process.state)}></i>
</span>
<div>
<h4 className="text-capitalize m-0"><Link to={`/embark/processes/${process.name}`}>{process.name}</Link></h4>
<h4 className="text-capitalize m-0"><Link to={`/embark/processes/${process.name}`}>{process.name} ({process.state})</Link></h4>
</div>
</div>
</Card>