Skip to content

Commit

Permalink
fix(ui-xpansion): move hidden batch size field
Browse files Browse the repository at this point in the history
  • Loading branch information
hdinia committed Oct 5, 2023
1 parent f9ef1bc commit 450daaa
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,22 +180,22 @@ function SettingsForm(props: PropType) {
label={t("xpansion.solver")}
data={currentSettings.solver || ""}
handleChange={handleChange}
optional
sx={{
minWidth: "100%",
}}
optional
/>
<TextField
type="number"
label={t("xpansion.batchSize")}
variant="filled"
value={currentSettings.batch_size || ""}
onChange={(e) =>
handleChange("batch_size", parseInt(e.target.value, 10))
}
sx={{ mb: 1 }}
/>
</SelectFields>
<TextField
type="number"
label={t("xpansion.batchSize")}
variant="filled"
value={currentSettings.batch_size || ""}
onChange={(e) =>
handleChange("batch_size", parseInt(e.target.value, 10))
}
sx={{ mb: 1 }}
/>
<TextField
type="number"
label={t("xpansion.timeLimit")}
Expand Down

0 comments on commit 450daaa

Please sign in to comment.