website: parameters have no hex value

This commit is contained in:
Mitchell Hashimoto
2023-10-05 23:31:52 -07:00
parent 1aedcaecc5
commit 3e945f5484

View File

@ -36,7 +36,7 @@ function VTElem({ elem }: { elem: string }) {
return (
<div className="border px-1 grid grid-rows-2 grid-cols-1 text-center">
<div>0x{hex}</div>
<div>{param ? "____" : `0x${hex}`}</div>
<div>{elem}</div>
</div>
);