mirror of
https://github.com/openziti/zrok.git
synced 2025-01-03 04:29:19 +01:00
more linty visual tweaks (#724)
This commit is contained in:
parent
afeb8605ea
commit
16aed27366
@ -15,7 +15,7 @@ const SecretToggle = ({ secret }: SecretToggleProps) => {
|
|||||||
const secretString = (s): string => {
|
const secretString = (s): string => {
|
||||||
let out = "";
|
let out = "";
|
||||||
for(let i = 0; i < s.length; i++) {
|
for(let i = 0; i < s.length; i++) {
|
||||||
out += " \u2022";
|
out += " \u2022"; // bullet
|
||||||
}
|
}
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
@ -49,7 +49,7 @@ const Visualizer = ({ vov, onSelectionChanged }: VisualizerProps) => {
|
|||||||
}
|
}
|
||||||
let g = tree();
|
let g = tree();
|
||||||
if(nodes.length === 0) return { nodes, edges };
|
if(nodes.length === 0) return { nodes, edges };
|
||||||
const width = 125;
|
const width = 100;
|
||||||
const height = 75;
|
const height = 75;
|
||||||
const hierarchy = stratify()
|
const hierarchy = stratify()
|
||||||
.id((node) => node.id)
|
.id((node) => node.id)
|
||||||
|
Loading…
Reference in New Issue
Block a user