Update compile-tab.js

pull/5370/head
bunsenstraat 3 years ago committed by Aniket
parent bfc8ea720e
commit 8e34d6665f
  1. 4
      apps/remix-ide/src/app/tabs/compile-tab.js

@ -126,7 +126,9 @@ class CompileTab extends CompilerApiMixin(ViewPlugin) { // implements ICompilerA
})
try {
this.currentFile = await this.call('fileManager', 'file')
} catch (error) {}
} catch (error) {
if (error.message !== 'Error: No such file or directory No file selected') throw new Error(error.message)
}
}
getCompilerParameters () {

Loading…
Cancel
Save