From 86f4a0535d0885efbedacbf0532ab8e9b2da4a87 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 9 Sep 2021 10:02:10 +0200 Subject: [PATCH] fix assignments --- apps/remix-ide/src/app/tabs/compile-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/tabs/compile-tab.js b/apps/remix-ide/src/app/tabs/compile-tab.js index 8066128218..17f10a504b 100644 --- a/apps/remix-ide/src/app/tabs/compile-tab.js +++ b/apps/remix-ide/src/app/tabs/compile-tab.js @@ -34,7 +34,7 @@ const profile = { class CompileTab extends CompilerApiMixin(ViewPlugin) { // implements ICompilerApi constructor (config, fileManager) { super(profile) - this.fileManager + this.fileManager = fileManager this.config = config this.queryParams = new QueryParams() this.compileTabLogic = new CompileTabLogic(this, this.contentImport)