Jacky Zhao
2021-12-24 2ba01c831178facd35c62adcb22f3cc39ead6975
fix untitled #36
1 files modified
2 ■■■ changed files
layouts/partials/graph.html 2 ●●● patch | view | raw | blame | history
layouts/partials/graph.html
@@ -185,7 +185,7 @@
  const labels = graphNode.append("text")
    .attr("dx", 12)
    .attr("dy", ".35em")
    .text((d) => content[d.id.replace("%20", "-")].title)
    .text((d) => content[d.id.replace("%20", "-")]?.title || "Untitled")
    .style("opacity", 0)
    .style("pointer-events", "none")
    .call(drag(simulation));