mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-11 12:30:25 +08:00
Disable filtering for study attribute
This commit is contained in:
@@ -33,11 +33,13 @@ export const PreferentialAnalytics: FC<{ studyId: number }> = ({ studyId }) => {
|
||||
header: "Key",
|
||||
footer: (info) => info.column.id,
|
||||
enableSorting: true,
|
||||
enableColumnFilter: false,
|
||||
}),
|
||||
columnHelper.accessor("value", {
|
||||
header: "Value",
|
||||
footer: (info) => info.column.id,
|
||||
enableSorting: true,
|
||||
enableColumnFilter: false,
|
||||
}),
|
||||
]
|
||||
return (
|
||||
|
||||
@@ -60,11 +60,13 @@ export const StudyHistory: FC<{ studyId: number }> = ({ studyId }) => {
|
||||
header: "Key",
|
||||
footer: (info) => info.column.id,
|
||||
enableSorting: true,
|
||||
enableColumnFilter: false,
|
||||
}),
|
||||
columnHelper.accessor("value", {
|
||||
header: "Value",
|
||||
footer: (info) => info.column.id,
|
||||
enableSorting: true,
|
||||
enableColumnFilter: false,
|
||||
}),
|
||||
]
|
||||
const trials: Trial[] = studyDetail?.trials || []
|
||||
|
||||
Reference in New Issue
Block a user