Bug 1522138 - [release 120] Update debugger frontend. r=dwalsh

This commit is contained in:
Jason Laster 2019-01-24 15:37:36 -05:00
parent 5128100b9f
commit 3962a7b2c1
3 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
This is the debugger.html project output.
See https://github.com/devtools-html/debugger.html
Version 117
Version 120
Comparison: https://github.com/devtools-html/debugger.html/compare/release-116...release-117
Comparison: https://github.com/devtools-html/debugger.html/compare/release-119...release-120
Packages:
- babel-plugin-transform-es2015-modules-commonjs @6.26.2

View File

@ -135,7 +135,7 @@ class Breakpoint extends PureComponent<Props> {
editor.CodeMirror.runMode(text, "application/javascript", node);
return { __html: node.innerHTML };
},
(text, editor) => `${text} - ${editor ? "editor" : ""}`
(text, editor) => `${text} - ${editor.CodeMirror ? "editor" : ""}`
);
/* eslint-disable react/no-danger */

View File

@ -69,7 +69,7 @@ if (isDevelopment()) {
}
export const prefs = new PrefsHelper("devtools", {
logging: ["Bool", "debugger.alphabetize-outline"],
logging: ["Bool", "debugger.logging"],
alphabetizeOutline: ["Bool", "debugger.alphabetize-outline"],
autoPrettyPrint: ["Bool", "debugger.auto-pretty-print"],
clientSourceMapsEnabled: ["Bool", "source-map.client-service.enabled"],