Xueqing commited on
Commit
933f1b9
·
verified ·
1 Parent(s): 397a7d3

Update frontend/src/pages/LeaderboardPage/components/Leaderboard/utils/columnUtils.js

Browse files
frontend/src/pages/LeaderboardPage/components/Leaderboard/utils/columnUtils.js CHANGED
@@ -777,6 +777,24 @@ export const createColumns = (
777
  "evaluations.fns.normalized_score"
778
  ],
779
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  ];
781
 
782
  const optionalColumns = [
 
777
  "evaluations.fns.normalized_score"
778
  ],
779
  },
780
+ {
781
+ accessorKey: "evaluations.finnum.normalized_score",
782
+ header: createHeaderCell("FinNum", COLUMN_TOOLTIPS.FinNum),
783
+ cell: ({ row, getValue }) =>
784
+ createScoreCell(getValue, row, "evaluations.finnum.normalized_score"),
785
+ size: TABLE_DEFAULTS.COLUMNS.COLUMN_SIZES[
786
+ "evaluations.finnum.normalized_score"
787
+ ],
788
+ },
789
+ {
790
+ accessorKey: "evaluations.fintext.normalized_score",
791
+ header: createHeaderCell("FinText", COLUMN_TOOLTIPS.FinText),
792
+ cell: ({ row, getValue }) =>
793
+ createScoreCell(getValue, row, "evaluations.fintext.normalized_score"),
794
+ size: TABLE_DEFAULTS.COLUMNS.COLUMN_SIZES[
795
+ "evaluations.fintext.normalized_score"
796
+ ],
797
+ },
798
  ];
799
 
800
  const optionalColumns = [