|
|
|
@ -28,16 +28,16 @@ export function RecorderUI (props: RecorderProps) { |
|
|
|
|
return ( |
|
|
|
|
<div className="udapp_cardContainer list-group-item border border-bottom"> |
|
|
|
|
<div className="udapp_recorderSection d-flex justify-content-between" onClick={toggleClass}> |
|
|
|
|
<div className="d-flex"> |
|
|
|
|
<div className="d-flex justify-content-center align-items-center"> |
|
|
|
|
<label className="mt-1 udapp_recorderSectionLabel">Transactions recorded</label> |
|
|
|
|
<div className="ml-2 mb-2 badge badge-pill badge-primary" title="The number of recorded transactions">{props.count}</div> |
|
|
|
|
<div className="ml-2 badge badge-pill badge-primary text-center" title="The number of recorded transactions">{props.count}</div> |
|
|
|
|
<OverlayTrigger placement={'right'} overlay={ |
|
|
|
|
<Tooltip className="text-nowrap" id="info-recorder"> |
|
|
|
|
<span>Save transactions (deployed contracts and function executions) and replay them in another environment. <br/> e.g Transactions created in Remix VM can be replayed in the Injected Provider. |
|
|
|
|
</span> |
|
|
|
|
</Tooltip> |
|
|
|
|
}> |
|
|
|
|
<i style={{ fontSize: 'medium' }} className={'ml-2 fal fa-info-circle'} aria-hidden="true"></i> |
|
|
|
|
<i style={{ fontSize: 'medium' }} className={'ml-2 fal fa-info-circle align-self-center'} aria-hidden="true"></i> |
|
|
|
|
</OverlayTrigger> |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|