This commit is contained in:
keisuke-umezawa
2023-01-24 10:58:18 +09:00
parent e253551f83
commit af44b85b8c
@@ -346,7 +346,9 @@ export const TrialTable: FC<{
label={`Objective ${i}`}
type="number"
value={objectiveValues[i]}
onChange={(e: ChangeEvent<HTMLInputElement>) => handleChangeValue(i, e)}
onChange={(e: ChangeEvent<HTMLInputElement>) =>
handleChangeValue(i, e)
}
/>
))}
</Box>
@@ -354,7 +356,11 @@ export const TrialTable: FC<{
<Button variant="contained" type="submit">
Submit
</Button>
<Button variant="outlined" color="error" onClick={handleFailTrial}>
<Button
variant="outlined"
color="error"
onClick={handleFailTrial}
>
Fail trial
</Button>
</Box>