From 93610e232b366c6f6cb9695d4755fa578dc28aa0 Mon Sep 17 00:00:00 2001 From: Adam Brangenberg Date: Wed, 1 Feb 2023 21:34:18 +0100 Subject: [PATCH] feat: Remove leading slash of folders in graph view (#282) --- 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 2e05b5cb..aba301ef 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')