From 16aed2736647ca352eac412bd64665338e418c31 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Fri, 20 Dec 2024 12:03:19 -0500 Subject: [PATCH] more linty visual tweaks (#724) --- ui100/src/SecretToggle.tsx | 2 +- ui100/src/Visualizer.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui100/src/SecretToggle.tsx b/ui100/src/SecretToggle.tsx index 622300f5..19124afc 100644 --- a/ui100/src/SecretToggle.tsx +++ b/ui100/src/SecretToggle.tsx @@ -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; } diff --git a/ui100/src/Visualizer.tsx b/ui100/src/Visualizer.tsx index 7e8b0580..256437db 100644 --- a/ui100/src/Visualizer.tsx +++ b/ui100/src/Visualizer.tsx @@ -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)