diff options
Diffstat (limited to 'devtools/client/memory/components/Individuals.js')
-rw-r--r-- | devtools/client/memory/components/Individuals.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/client/memory/components/Individuals.js b/devtools/client/memory/components/Individuals.js index dd0e9acc81..ed48232c68 100644 --- a/devtools/client/memory/components/Individuals.js +++ b/devtools/client/memory/components/Individuals.js @@ -42,9 +42,9 @@ class Individuals extends Component { autoExpandDepth: 0, preventNavigationOnArrowRight: false, focused: individuals.focused, - getParent: node => null, - getChildren: node => [], - isExpanded: node => false, + getParent: () => null, + getChildren: () => [], + isExpanded: () => false, onExpand: () => {}, onCollapse: () => {}, onFocus, |