fix top priority tests
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user