From f4f69633cee2007170b70274a80e50f632139d98 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Tue, 14 Apr 2026 17:06:06 +0200 Subject: [PATCH] Add classification dropdown in Missing Data edit panel --- src/components/MissingDataView.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/MissingDataView.tsx b/src/components/MissingDataView.tsx index 450b604..75c82cb 100644 --- a/src/components/MissingDataView.tsx +++ b/src/components/MissingDataView.tsx @@ -390,18 +390,21 @@ export function MissingDataView({ data, headers, onSaveRow, onCaptureState }: Mi
- setEditing(prev => prev ? { ...prev, classification: e.target.value } : prev)} - placeholder="e.g. CORE, OOC..." className={cn( "w-full bg-slate-900 border rounded-md px-3 py-2.5 text-sm text-white focus:outline-none focus:ring-1 transition-colors", editing.classification !== String(editingRow[COLUMNS.CLASSIFICATION] || '') ? "border-blue-500 focus:ring-blue-500" : "border-slate-700 focus:border-slate-500 focus:ring-slate-500" )} - /> + > + + {getUniqueValues(COLUMNS.CLASSIFICATION).map(val => ( + + ))} +
{launchDateCol >= 0 && (