From 2f3275e7a6d9a9dc8071c90aaebb5311737637e0 Mon Sep 17 00:00:00 2001 From: sawka Date: Wed, 24 Jul 2024 20:18:55 -0700 Subject: [PATCH] fix vdom key error --- frontend/app/view/term/term.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/app/view/term/term.tsx b/frontend/app/view/term/term.tsx index 62f770032..d3f7ccdc5 100644 --- a/frontend/app/view/term/term.tsx +++ b/frontend/app/view/term/term.tsx @@ -112,10 +112,12 @@ const testVDom: VDomElem = { tag: "div", children: [ { + id: "testh1", tag: "h1", children: [vdomText("Hello World")], }, { + id: "testp", tag: "p", children: [vdomText("This is a paragraph (from VDOM)")], },