diff --git a/src/components/ProjectForm/ProjectForm.tsx b/src/components/ProjectForm/ProjectForm.tsx index 09c00dfa..c167ba58 100644 --- a/src/components/ProjectForm/ProjectForm.tsx +++ b/src/components/ProjectForm/ProjectForm.tsx @@ -94,6 +94,26 @@ export const ProjectForm: React.FunctionComponent = () => { }); }} /> + { + const value = (event.target as HTMLInputElement).value; + setProjectEditState(projectDispatch, { + ...project, + maxBranchLifetime: parseInt(value), + }); + }} + /> ;