fix TreeView UI

pull/1/head
yann300 7 years ago
parent c50e897e07
commit dcc3f34f50
  1. 2
      remix-debugger/src/ui/SolidityTypeFormatter.js
  2. 2
      remix-debugger/src/ui/TreeView.js

@ -48,7 +48,7 @@ function extractData (item, parent, key) {
ret.isMapping = true
ret.self = item.type
} else {
ret.children = []
ret.children = null
ret.self = item.value
ret.type = item.type
}

@ -175,7 +175,7 @@ class TreeView {
ret.isLeaf = false
} else {
ret.self = item
ret.children = []
ret.children = null
ret.isNode = false
ret.isLeaf = true
}

Loading…
Cancel
Save