From 247cb388544b0096b17ba6e8462c991b57554388 Mon Sep 17 00:00:00 2001 From: ali asaria <aliasaria@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:29:31 -0500 Subject: [PATCH] adjust table --- src/renderer/components/Experiment/Eval/Eval.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/Experiment/Eval/Eval.tsx b/src/renderer/components/Experiment/Eval/Eval.tsx index 46cf9547..994e8b41 100644 --- a/src/renderer/components/Experiment/Eval/Eval.tsx +++ b/src/renderer/components/Experiment/Eval/Eval.tsx @@ -260,6 +260,9 @@ export default function Eval({ <Typography level="h1" mb={1}> Evaluate </Typography> + <Alert color="neutral" sx={{ mb: 2 }}> + This feature is still in development. We could use your help! + </Alert> {plugins?.length === 0 ? ( <Alert color="danger"> No Evaluation Scripts available, please install an evaluator plugin. @@ -285,7 +288,7 @@ export default function Eval({ <thead> <tr> <th>Evaluator</th> - <th> </th> + <th style={{ width: '80px' }}> </th> <th>Tasks</th> <th>Plugin</th> <th style={{ textAlign: 'right' }}> </th> @@ -310,7 +313,7 @@ export default function Eval({ Edit </Button> </td> - <td> + <td style={{ overflow: 'hidden' }}> {evaluations?.script_parameters?.task} <FileTextIcon size={14} /> </td> -- GitLab