Fixed some formatting of the benchmark scoring
This commit is contained in:
parent
2b5193dccf
commit
5394959880
@ -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>')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user