mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 00:27:55 +00:00
Fix: Handle undefined results for new models correctly
This commit is contained in:
@@ -105,7 +105,7 @@
|
|||||||
li.className='flex items-center gap-3 text-sm';
|
li.className='flex items-center gap-3 text-sm';
|
||||||
list.appendChild(li);
|
list.appendChild(li);
|
||||||
const time=genTimes[model]?.[test];
|
const time=genTimes[model]?.[test];
|
||||||
if(time===null){
|
if(time==null){
|
||||||
li.innerHTML=`— <span class="font-medium text-gray-800">${test}</span><span class="mono text-gray-500 ml-auto">N/A</span>`;
|
li.innerHTML=`— <span class="font-medium text-gray-800">${test}</span><span class="mono text-gray-500 ml-auto">N/A</span>`;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -143,4 +143,3 @@
|
|||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user