more linty visual tweaks (#724)

This commit is contained in:
Michael Quigley 2024-12-20 12:03:19 -05:00
parent afeb8605ea
commit 16aed27366
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ const SecretToggle = ({ secret }: SecretToggleProps) => {
const secretString = (s): string => {
let out = "";
for(let i = 0; i < s.length; i++) {
out += " \u2022";
out += " \u2022"; // bullet
}
return out;
}

View File

@ -49,7 +49,7 @@ const Visualizer = ({ vov, onSelectionChanged }: VisualizerProps) => {
}
let g = tree();
if(nodes.length === 0) return { nodes, edges };
const width = 125;
const width = 100;
const height = 75;
const hierarchy = stratify()
.id((node) => node.id)