From 0c10a41815e9298d0b88edddfd86df6a10f16e1f Mon Sep 17 00:00:00 2001 From: Adam Brangenberg Date: Wed, 1 Feb 2023 20:28:04 +0100 Subject: [PATCH] Formatting directories properly In case someone links a directory where e.g. a list of notes within it is getting shown, the directory's node will be formatted properly. --- assets/js/graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/graph.js b/assets/js/graph.js index 2e05b5cbc..aba301efb 100644 --- a/assets/js/graph.js +++ b/assets/js/graph.js @@ -229,7 +229,7 @@ async function drawGraph(baseUrl, isHome, pathColors, graphConfig) { .attr("dx", 0) .attr("dy", (d) => nodeRadius(d) + 8 + "px") .attr("text-anchor", "middle") - .text((d) => content[d.id]?.title || d.id.replace("-", " ")) + .text((d) => content[d.id]?.title || (d.id.charAt(1).toUpperCase() + d.id.slice(2)).replace("-", " ")) .style('opacity', (opacityScale - 1) / 3.75) .style("pointer-events", "none") .style('font-size', fontSize+'em')