mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-12 12:40:33 +08:00
Fix lint
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user