Merge pull request #3483 from ethereum/joe-sol2uml-patch

Sol2UML Default Message Patch
waittest2
Joseph Izang 2 years ago committed by GitHub
commit 1f738ff135
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      libs/remix-ui/solidity-uml-gen/src/lib/solidity-uml-gen.tsx

@ -77,10 +77,16 @@ export function RemixUiSolidityUmlGen ({ updatedSvg, loading }: RemixUiSolidityU
}
const DefaultInfo = () => (
<div className="d-flex flex-column justify-content-center align-items-center mt-5">
<h2 className="h2 align-self-start"><p>To view your contract as a Uml Diragram</p></h2>
<h3 className="h4 align-self-start"><p>Right Click on your contract file (Usually ends with .sol)</p></h3>
<h3 className="h4 align-self-start"><p>Click on Generate UML</p></h3>
<div className="d-flex flex-column justify-content-center align-items-center mt-5 ml-5">
<h3 className="h3 align-self-start text-dark"><p>To view your contract as a UML Diagram</p></h3>
<ul className="ml-3 justify-content-start align-self-start">
<li>
<h5 className="h5 align-self-start text-dark"><p>Right click on your contract file</p></h5>
</li>
<li>
<h5 className="h5 align-self-start text-dark"><p>Click on <b>Generate UML</b></p></h5>
</li>
</ul>
</div>
)
const Display = () => {

Loading…
Cancel
Save