author | Jordan Santell <jsantell@mozilla.com> |
Tue, 27 Oct 2015 08:11:41 -0700 | |
changeset 269754 | f6d32a2fa56177e545400e655f3f57ebaa6b5a39 |
parent 269753 | 56707eeec6e53453878731864eaac19ef1a0c5ab |
child 269755 | 4e164269cf888c03a18d1c4ea057bca68fb0ed32 |
child 269817 | 964ecb2b68a0aea3204e0310c65e8e09bd9fe6b7 |
push id | 29589 |
push user | kwierso@gmail.com |
push date | Tue, 27 Oct 2015 19:35:22 +0000 |
treeherder | mozilla-central@4e164269cf88 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jlong |
bugs | 1217239 |
milestone | 44.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/devtools/client/memory/components/tree-item.js +++ b/devtools/client/memory/components/tree-item.js @@ -17,13 +17,13 @@ const TreeItem = module.exports = create return dom.div({ className: "heap-tree-item" }, dom.span({ className: "heap-tree-item-bytes" }, item.bytes), dom.span({ className: "heap-tree-item-count" }, item.count), dom.span({ className: "heap-tree-item-total-bytes" }, item.totalBytes), dom.span({ className: "heap-tree-item-total-count" }, item.totalCount), dom.span({ className: "heap-tree-item-name", style: { marginLeft: depth * INDENT }}, arrow, - this.toLabel(item.name) + item.name ) ); } });