fix untitled #36
This commit is contained in:
		@@ -185,7 +185,7 @@
 | 
				
			|||||||
  const labels = graphNode.append("text")
 | 
					  const labels = graphNode.append("text")
 | 
				
			||||||
    .attr("dx", 12)
 | 
					    .attr("dx", 12)
 | 
				
			||||||
    .attr("dy", ".35em")
 | 
					    .attr("dy", ".35em")
 | 
				
			||||||
    .text((d) => content[d.id.replace("%20", "-")].title)
 | 
					    .text((d) => content[d.id.replace("%20", "-")]?.title || "Untitled")
 | 
				
			||||||
    .style("opacity", 0)
 | 
					    .style("opacity", 0)
 | 
				
			||||||
    .style("pointer-events", "none")
 | 
					    .style("pointer-events", "none")
 | 
				
			||||||
    .call(drag(simulation));
 | 
					    .call(drag(simulation));
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user