Jimin Huang
commited on
Commit
·
724cc48
1
Parent(s):
6016078
fix: alter column name
Browse files
frontend/src/pages/LeaderboardPage/components/Leaderboard/utils/columnUtils.js
CHANGED
|
@@ -684,6 +684,9 @@ export const createColumns = (
|
|
| 684 |
|
| 685 |
const isAverageColumn = field === "model.average_score";
|
| 686 |
const hasNoValue = value === null || value === undefined;
|
|
|
|
|
|
|
|
|
|
| 687 |
|
| 688 |
return (
|
| 689 |
<Box sx={commonStyles.cellContainer}>
|
|
@@ -749,8 +752,6 @@ export const createColumns = (
|
|
| 749 |
);
|
| 750 |
};
|
| 751 |
|
| 752 |
-
console.error(row);
|
| 753 |
-
|
| 754 |
const evaluationColumns = [
|
| 755 |
{
|
| 756 |
accessorKey: "evaluations.multifin.normalized_score",
|
|
|
|
| 684 |
|
| 685 |
const isAverageColumn = field === "model.average_score";
|
| 686 |
const hasNoValue = value === null || value === undefined;
|
| 687 |
+
console.error(value);
|
| 688 |
+
console.error(rawValue);
|
| 689 |
+
console.error(row);
|
| 690 |
|
| 691 |
return (
|
| 692 |
<Box sx={commonStyles.cellContainer}>
|
|
|
|
| 752 |
);
|
| 753 |
};
|
| 754 |
|
|
|
|
|
|
|
| 755 |
const evaluationColumns = [
|
| 756 |
{
|
| 757 |
accessorKey: "evaluations.multifin.normalized_score",
|