fix running compileAndrun

pull/2262/head
yann300 3 years ago
parent 45996ec3fa
commit 2105c21a74
  1. 4
      apps/remix-ide/src/app/tabs/compile-and-run.ts

@ -59,7 +59,8 @@ export class CompileAndRun extends Plugin {
window.document.addEventListener('keydown', this.executionListener)
this.on('compilerMetadata', 'artefactsUpdated', async (fileName, contract) => {
if (this.targetFileName === contract.file && contract.object && contract.object.devdoc['custom:dev-run-script']) {
if (this.targetFileName === contract.file) {
if (contract.object && contract.object.devdoc['custom:dev-run-script']) {
this.targetFileName = null
const file = contract.object.devdoc['custom:dev-run-script']
if (file) {
@ -71,6 +72,7 @@ export class CompileAndRun extends Plugin {
} else {
this.call('notification', 'toast', 'You have not set a script to run. Set it with @custom:dev-run-script NatSpec tag.')
}
}
})
}

Loading…
Cancel
Save