Update tinker_tickets_react/src/Components/CreateTicket/TicketSelect.tsx

This commit is contained in:
2025-11-29 14:02:48 -05:00
parent 295a869f48
commit e58e2d539f

View File

@ -18,7 +18,7 @@ updateField,
}) => {
return ( <div className="detail-quarter"> <label>{label}</label>
```
<select
value={value}
onChange={e => updateField(field, e.target.value)}
@ -30,7 +30,7 @@ return ( <div className="detail-quarter"> <label>{label}</label>
))}
</select>
</div>
```
);
};