Fixed some formatting of the benchmark scoring

This commit is contained in:
Gregory Ballantine 2025-06-23 18:42:00 -04:00
parent 2b5193dccf
commit 5394959880

View File

@ -32,11 +32,10 @@ fetchTestBenchmarkResults = (testId, benchmarkId) ->
for result in resultData for result in resultData
avg_total += result.avgScore avg_total += result.avgScore
min_total += result.minScore min_total += result.minScore if result.minScore
max_total += result.maxScore max_total += result.maxScore if result.maxScore
tableRow = $("#results-table tr[data-benchmark-id=#{benchmarkId}]") tableRow = $("#results-table tr[data-benchmark-id=#{benchmarkId}]")
tableRow.empty() tableRow.empty()
tableRow.append('<td>' + benchmarkData.name + '</td>') tableRow.append('<td>' + benchmarkData.name + '</td>')