From ba05809576f828a511d47a4d864c233b9731bc00 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Wed, 19 Nov 2025 17:30:47 -0800 Subject: [PATCH] Fix: Handle undefined results for new models correctly --- index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.html b/index.html index 27e5895..298198f 100644 --- a/index.html +++ b/index.html @@ -105,7 +105,7 @@ li.className='flex items-center gap-3 text-sm'; list.appendChild(li); const time=genTimes[model]?.[test]; - if(time===null){ + if(time==null){ li.innerHTML=`— ${test}N/A`; continue; } @@ -143,4 +143,3 @@ -