Added a details page for test results; added an API route for removing test results
This commit is contained in:
@ -53,6 +53,8 @@ fetchTestBenchmarkResults = (testId, benchmarkId) ->
|
||||
else
|
||||
tableRow.append('<td>N/a</td>')
|
||||
tableRow.append('<td>N/a</td>')
|
||||
|
||||
tableRow.append('<td><a href="/test/' + testId + '/results">Details</a></td>')
|
||||
catch error
|
||||
console.error 'An error occurred while fetching benchmark results.', error
|
||||
|
||||
|
@ -22,6 +22,10 @@ table{
|
||||
border: 1px solid #eee;
|
||||
}
|
||||
|
||||
a{
|
||||
transition: color 210ms ease-in-out;
|
||||
}
|
||||
|
||||
#main-wrapper{
|
||||
padding: 1.5rem 2rem;
|
||||
background: white;
|
||||
|
Reference in New Issue
Block a user