Skip to content

Commit

Permalink
flooring number input
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed Jun 12, 2020
1 parent e6c5a93 commit ab19e54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class JobDetails extends Component {
};

onModelSnapshotRetentionDaysChange = (e) => {
this.setJobDetails({ jobModelSnapshotRetentionDays: +e.target.value });
this.setJobDetails({ jobModelSnapshotRetentionDays: Math.floor(+e.target.value) });
};

onGroupsChange = (selectedGroups) => {
Expand Down

0 comments on commit ab19e54

Please sign in to comment.