fix top priority tests

This commit is contained in:
2026-07-15 15:48:02 -04:00
parent 99b919b5da
commit b5dd611f82
4 changed files with 101 additions and 22 deletions
+20 -5
View File
@@ -18,8 +18,10 @@ export default function RightPanel({
completionDate,
startDateOverride,
onStartDateOverrideChange,
topPriority,
onTopPriorityChange,
topPriorityDut,
onTopPriorityDutChange,
topPriorityRef,
onTopPriorityRefChange,
lowestPriority,
onLowestPriorityChange,
onRemakeSchedule,
@@ -48,12 +50,25 @@ export default function RightPanel({
{/* Top priority */}
<div>
<label className="block text-[11px] font-semibold uppercase tracking-wider text-gray-500 mb-1.5">
Top Priority Tests
Top Priority Tests (DUT - CGW453)
</label>
<textarea
rows={3}
value={topPriority}
onChange={(e) => onTopPriorityChange(e.target.value)}
value={topPriorityDut}
onChange={(e) => onTopPriorityDutChange(e.target.value)}
placeholder="P2PRXAX001, COERXBE002…"
className="w-full bg-gray-900 border border-gray-600 rounded-md px-2.5 py-1.5 text-xs text-gray-200 placeholder-gray-600 focus:outline-none focus:border-blue-500 resize-none font-mono"
/>
</div>
<div>
<label className="block text-[11px] font-semibold uppercase tracking-wider text-gray-500 mb-1.5">
Top Priority Tests (REF - CGW452)
</label>
<textarea
rows={3}
value={topPriorityRef}
onChange={(e) => onTopPriorityRefChange(e.target.value)}
placeholder="P2PRXAX001, COERXBE002…"
className="w-full bg-gray-900 border border-gray-600 rounded-md px-2.5 py-1.5 text-xs text-gray-200 placeholder-gray-600 focus:outline-none focus:border-blue-500 resize-none font-mono"
/>