Skip to content

Commit

Permalink
add new fields to edit project form
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad authored and Brad committed Oct 11, 2023
1 parent 3556bae commit 920bf53
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
35 changes: 34 additions & 1 deletion client/src/components/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,37 @@ export const simpleInputs = [
type: 'text',
placeholder: 'htttps://hackforla.org/projects/',
},
];
];

export const additionalInputsForEdit = [
{
label: 'Partners',
name: 'partners',
type: 'text',
placeholder: 'partners',
},
{
label: 'Managed by Users',
name: 'mangedByUsers',
type: 'text',
placeholder: 'Managed by Users'
},
{
label: 'Project Status',
name: 'projectStatus',
type: 'text',
placeholder: 'Project Status'
},
{
label: 'Google Drive ID',
name: 'googleDriveId',
type: 'text',
placeholder: 'htttps://drive.google.com/',
},
{
label: 'Created at',
name: 'createdAt',
type: 'text',
placeholder: 'Created At'
}
]
4 changes: 2 additions & 2 deletions client/src/components/manageProjects/editProject.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import EditMeetingTimes from './editMeetingTimes';
import CreateNewEvent from './createNewEvent';
import readableEvent from './utilities/readableEvent';
import ProjectForm from '../ProjectForm';
import { simpleInputs } from '../data';
import { simpleInputs, additionalInputsForEdit } from '../data';
import TitledBox from '../parts/boxes/TitledBox';

import { ReactComponent as EditIcon } from '../../svg/Icon_Edit.svg';
Expand Down Expand Up @@ -92,7 +92,7 @@ const EditProject = ({
/>
</div>
<ProjectForm
arr={simpleInputs}
arr={[...simpleInputs, ...additionalInputsForEdit]}
formData={formData}
projectToEdit={projectToEdit}
isEdit={true}
Expand Down

0 comments on commit 920bf53

Please sign in to comment.