Skip to content

Commit

Permalink
pdate CPU cores validation and remove selectMins label
Browse files Browse the repository at this point in the history
  • Loading branch information
suemkwon committed Jan 24, 2025
1 parent 77c8cad commit d95e148
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions src/components/apps/launch/ResourceRequirements.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,6 @@ const StepResourceRequirementsForm = ({
return (
<div style={{ margin: 8 }}>
<Grid container spacing={1}>
<Grid item xs={12}>
<Typography variant="subtitle2">
{t("selectMins")}
</Typography>
</Grid>
<Grid item xs={12}>
<FastField
id={buildID(baseId, ids.RESOURCE_REQUESTS.TOOL_CPU)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/apps/launch/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const validate = (t, hasParams) => (values) => {
t
);
if (err) {
reqErrors[i] = { min_cpu_cores: err };
reqErrors[i] = { max_cpu_cores: err };
}
}
});
Expand Down

0 comments on commit d95e148

Please sign in to comment.