Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

upgrade to reps 0.1.1 & add Window->Global formatting #2019

Merged
merged 1 commit into from
Feb 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"babylon": "^6.15.0",
"codemirror": "^5.1.0",
"devtools-launchpad": "^0.0.41",
"devtools-reps": "^0.0.8",
"devtools-reps": "^0.1.1",
"documentation": "^4.0.0-beta11",
"eslint": "^3.12.0",
"expect.js": "^0.3.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/SecondaryPanes/Scopes.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function getScopes(pauseInfo, selectedFrame) {
// If this is the global window scope, mark it as such so that it will
// preview Window: Global instead of Window: Window
if (value.class === "Window") {
value = Object.assign({}, scope.object, { isGlobal: true });
value = Object.assign({}, scope.object, { displayClass: "Global" });
}
scopes.push({
name: scope.object.class,
Expand Down
Loading