Commit 042d03a9 authored by yann300's avatar yann300

fix opening generated file in the editor

parent 95479ad6
...@@ -105,7 +105,7 @@ class DebuggerUI { ...@@ -105,7 +105,7 @@ class DebuggerUI {
// check in generated sources // check in generated sources
for (const source of generatedSources) { for (const source of generatedSources) {
if (source.id === rawLocation.file) { if (source.id === rawLocation.file) {
path = `.debugger/generated-sources/${source.name}` path = `browser/.debugger/generated-sources/${source.name}`
let content let content
try { try {
content = await this.debuggerModule.call('fileManager', 'getFile', path, source.contents) content = await this.debuggerModule.call('fileManager', 'getFile', path, source.contents)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment