From 042d03a94d4b1aaed5b4399d49cb189f7cc547a7 Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 21 Oct 2020 12:02:29 +0200 Subject: [PATCH] fix opening generated file in the editor --- apps/remix-ide/src/app/tabs/debugger/debuggerUI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/tabs/debugger/debuggerUI.js b/apps/remix-ide/src/app/tabs/debugger/debuggerUI.js index 13c1ddf346..dc3ce73c57 100644 --- a/apps/remix-ide/src/app/tabs/debugger/debuggerUI.js +++ b/apps/remix-ide/src/app/tabs/debugger/debuggerUI.js @@ -105,7 +105,7 @@ class DebuggerUI { // check in generated sources for (const source of generatedSources) { if (source.id === rawLocation.file) { - path = `.debugger/generated-sources/${source.name}` + path = `browser/.debugger/generated-sources/${source.name}` let content try { content = await this.debuggerModule.call('fileManager', 'getFile', path, source.contents)