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 }) => {
280280 { row . lintScore }
281281 </ td >
282282 < td className = "px-6 py-4 whitespace-nowrap text-sm text-gray-500" >
283- { /*{ row.lintScore}*/ }
283+ { row . memUsage }
284284 </ td >
285285 < td className = "px-6 py-4 whitespace-nowrap text-sm text-gray-500" >
286- { /*{ row.lintScore}*/ }
286+ { row . execDuration }
287287 </ td >
288288 </ tr >
289289 ) )
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ export default class LeaderboardModel {
33 language : string | undefined ;
44 lintScore : string | undefined ;
55 qualityScore : string | undefined ;
6+ memUsage : number | undefined ;
7+ execDuration : number | undefined ;
68 createdAt : string | undefined ;
79 user :
810 | {
You can’t perform that action at this time.
0 commit comments