style(testcase-form): reorder input props and make inputs read-only

This commit is contained in:
cfngc4594 2025-04-13 13:22:47 +08:00
parent 8b3faf4a42
commit e7ad3a66e6

View File

@ -49,9 +49,10 @@ export default function TestcaseForm(props: TestcaseFormInterface) {
<FormLabel>{`${fieldName} =`}</FormLabel>
<FormControl>
<Input
className="bg-muted border-transparent shadow-none rounded-lg h-10"
placeholder={`Enter ${fieldName}`}
type="text"
placeholder={`Enter ${fieldName}`}
readOnly
className="bg-muted border-transparent shadow-none rounded-lg h-10"
{...field}
/>
</FormControl>