fix: correct graph labels for index.md nodes (#431)
				
					
				
			This commit is contained in:
		
							parent
							
								
									082fdf2e80
								
							
						
					
					
						commit
						c35cd422c6
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
					@ -231,7 +231,9 @@ async function renderGraph(container: string, fullSlug: FullSlug) {
 | 
				
			||||||
    .attr("dy", (d) => -nodeRadius(d) + "px")
 | 
					    .attr("dy", (d) => -nodeRadius(d) + "px")
 | 
				
			||||||
    .attr("text-anchor", "middle")
 | 
					    .attr("text-anchor", "middle")
 | 
				
			||||||
    .text(
 | 
					    .text(
 | 
				
			||||||
      (d) => data[d.id]?.title || (d.id.charAt(1).toUpperCase() + d.id.slice(2)).replace("-", " "),
 | 
					      (d) =>
 | 
				
			||||||
 | 
					        data[d.id]?.title ||
 | 
				
			||||||
 | 
					        (d.id.charAt(0).toUpperCase() + d.id.slice(1, d.id.length - 1)).replace("-", " "),
 | 
				
			||||||
    )
 | 
					    )
 | 
				
			||||||
    .style("opacity", (opacityScale - 1) / 3.75)
 | 
					    .style("opacity", (opacityScale - 1) / 3.75)
 | 
				
			||||||
    .style("pointer-events", "none")
 | 
					    .style("pointer-events", "none")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue