From 3e945f54845ebe563f40ad4a538d6347ece4befd Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 5 Oct 2023 23:31:52 -0700 Subject: [PATCH] website: parameters have no hex value --- website/components/VTSequence.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/components/VTSequence.tsx b/website/components/VTSequence.tsx index 6cb6422d7..bf3e94d7c 100644 --- a/website/components/VTSequence.tsx +++ b/website/components/VTSequence.tsx @@ -36,7 +36,7 @@ function VTElem({ elem }: { elem: string }) { return (
-
0x{hex}
+
{param ? "____" : `0x${hex}`}
{elem}
);