fix(ui) - performance var check
This commit is contained in:
parent
47846e2641
commit
97c66b3422
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ const HeapTooltip = ({ active, payload}) => {
|
|||
}
|
||||
|
||||
const NodesCountTooltip = ({ active, payload} ) => {
|
||||
if (!active || payload.length === 0) return null;
|
||||
if (!active || !payload || payload.length === 0) return null;
|
||||
return (
|
||||
<div className={ stl.tooltipWrapper } >
|
||||
<p>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue