From 5a68d021b9a11ffb68febae39efcaea4acef4980 Mon Sep 17 00:00:00 2001 From: ztimson Date: Tue, 26 Apr 2022 16:36:01 -0400 Subject: [PATCH] Switched vertical bar character in network graph --- scripts/network-graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/network-graph.js b/scripts/network-graph.js index d928fab..d772a5e 100644 --- a/scripts/network-graph.js +++ b/scripts/network-graph.js @@ -80,7 +80,7 @@ export async function main(ns) { const last = i == nodes.length - 1; const branch = last ? '└─ ' : '├─ '; htmlPrint(spacer + branch + `${server + stats}`); - render(tree[server], spacer + (last ? ' ' : '| ')); + render(tree[server], spacer + (last ? ' ' : '│ ')); } }