Update frontend/src/pages/LeaderboardPage/components/Leaderboard/utils/columnUtils.js
Browse files
frontend/src/pages/LeaderboardPage/components/Leaderboard/utils/columnUtils.js
CHANGED
@@ -759,6 +759,15 @@ export const createColumns = (
|
|
759 |
"evaluations.multifin.normalized_score"
|
760 |
],
|
761 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
762 |
];
|
763 |
|
764 |
const optionalColumns = [
|
|
|
759 |
"evaluations.multifin.normalized_score"
|
760 |
],
|
761 |
},
|
762 |
+
{
|
763 |
+
accessorKey: "evaluations.qa.normalized_score",
|
764 |
+
header: createHeaderCell("QA", COLUMN_TOOLTIPS.QA),
|
765 |
+
cell: ({ row, getValue }) =>
|
766 |
+
createScoreCell(getValue, row, "evaluations.multifin.normalized_score"),
|
767 |
+
size: TABLE_DEFAULTS.COLUMNS.COLUMN_SIZES[
|
768 |
+
"evaluations.qa.normalized_score"
|
769 |
+
],
|
770 |
+
},
|
771 |
];
|
772 |
|
773 |
const optionalColumns = [
|