From a044eb33fc6caa695077ba3e826768acb4c7c017 Mon Sep 17 00:00:00 2001 From: Arda Erzin Date: Mon, 25 May 2026 15:01:34 +0200 Subject: [PATCH] fix(frontend): remove duplicate 'View details' evaluator menu item MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'Configure' and 'View details' items in the automatic evaluator row menu both called handleConfigure, opening the same drawer. The 'View details' entry was a stub introduced with the new evaluators table that never got its own handler — remove it. --- .../Evaluators/Table/assets/evaluatorColumns.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/web/oss/src/components/Evaluators/Table/assets/evaluatorColumns.tsx b/web/oss/src/components/Evaluators/Table/assets/evaluatorColumns.tsx index 251b4433f6..f4745b8a00 100644 --- a/web/oss/src/components/Evaluators/Table/assets/evaluatorColumns.tsx +++ b/web/oss/src/components/Evaluators/Table/assets/evaluatorColumns.tsx @@ -580,13 +580,6 @@ export function createEvaluatorColumns( onClick: (record: EvaluatorTableRow) => actions.handleConfigure?.(record), }, - { - key: "details", - label: "View details", - icon: , - onClick: (record: EvaluatorTableRow) => - actions.handleConfigure?.(record), - }, {type: "divider" as const}, { key: "delete",