feat (ui): netwerken en files verfraaid

This commit is contained in:
kodi
2026-02-25 10:07:35 +01:00
parent ec13059437
commit ebb6d755a0
3 changed files with 318 additions and 47 deletions
+2 -2
View File
@@ -653,11 +653,11 @@
.attr('class', d => `graphNode ${d.type}`);
node.append('circle')
.attr('r', d => d.type === 'network' ? 10 : 8);
.attr('r', d => d.type === 'network' ? 14 : 9);
node.append('text')
.attr('class', 'graphLabel')
.attr('x', 12)
.attr('x', d => d.type === 'network' ? 18 : 12)
.attr('y', 4)
.text(d => d.label || d.key);