mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
VSCode Insiders breaks into Chrome developer tools with "TypeError: Cannot read property 'layout' of undefined". Fixes #81063
This commit is contained in:
parent
003a1acd23
commit
b10bf696e4
1 changed files with 1 additions and 1 deletions
|
@ -601,7 +601,7 @@ export class RawDebugSession implements IDisposable {
|
|||
} else {
|
||||
args[key] = [value];
|
||||
}
|
||||
} else if (key === 'extensionDevelopmentPath') {
|
||||
} else if (key === 'extensionDevelopmentPath' || key === 'enable-proposed-api') {
|
||||
const v = args[key];
|
||||
if (v) {
|
||||
v.push(value);
|
||||
|
|
Loading…
Reference in a new issue