diff --git a/src/components/tree/phyloTree/labels.js b/src/components/tree/phyloTree/labels.js index 4e6e90437..d92918064 100644 --- a/src/components/tree/phyloTree/labels.js +++ b/src/components/tree/phyloTree/labels.js @@ -14,7 +14,7 @@ export const updateTipLabels = function updateTipLabels(dt) { const inViewTerminalNodes = this.nodes .filter((d) => d.terminal) .filter((d) => d.inView) - .filter((d) => d.visibility == NODE_VISIBLE); + .filter((d) => d.visibility === NODE_VISIBLE); // console.log(`there are ${inViewTerminalNodes.length} nodes in view`)