File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/components/leaderboard Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -280,10 +280,10 @@ const Leaderboard: React.FC<LeaderboardProps> = ({ benchmarkId }) => {
280
280
{ row . lintScore }
281
281
</ td >
282
282
< td className = "px-6 py-4 whitespace-nowrap text-sm text-gray-500" >
283
- { /*{ row.lintScore}*/ }
283
+ { row . memUsage }
284
284
</ td >
285
285
< td className = "px-6 py-4 whitespace-nowrap text-sm text-gray-500" >
286
- { /*{ row.lintScore}*/ }
286
+ { row . execDuration }
287
287
</ td >
288
288
</ tr >
289
289
) )
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ export default class LeaderboardModel {
3
3
language : string | undefined ;
4
4
lintScore : string | undefined ;
5
5
qualityScore : string | undefined ;
6
+ memUsage : number | undefined ;
7
+ execDuration : number | undefined ;
6
8
createdAt : string | undefined ;
7
9
user :
8
10
| {
You can’t perform that action at this time.
0 commit comments