Merge pull request #3905 from ethereum/ssa-buttontext-fix

Ssa Button Text fix
pull/3903/head
yann300 1 year ago committed by GitHub
commit 51cee0e2f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      libs/remix-ui/static-analyser/src/lib/remix-ui-static-analyser.tsx

@ -1070,7 +1070,7 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => {
</div>
{state.data && state.file.length > 0 && state.source ? (
<Button
buttonText={`Analyse ${state.file}`}
buttonText={`Analyze ${state.file}`}
classList="btn btn-sm btn-primary btn-block"
onClick={async () => {
await run(
@ -1256,4 +1256,4 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => {
)
}
export default RemixUiStaticAnalyser;
export default RemixUiStaticAnalyser

Loading…
Cancel
Save