From 920bf536eafaa5335e95ecfbc1a14b64b5fc1e64 Mon Sep 17 00:00:00 2001 From: Brad Date: Wed, 11 Oct 2023 13:13:50 -0700 Subject: [PATCH] add new fields to edit project form --- client/src/components/data.js | 35 ++++++++++++++++++- .../components/manageProjects/editProject.js | 4 +-- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/client/src/components/data.js b/client/src/components/data.js index c5e7a27b..ad609c17 100644 --- a/client/src/components/data.js +++ b/client/src/components/data.js @@ -54,4 +54,37 @@ export const simpleInputs = [ type: 'text', placeholder: 'htttps://hackforla.org/projects/', }, -]; \ No newline at end of file +]; + +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' + } +] \ No newline at end of file diff --git a/client/src/components/manageProjects/editProject.js b/client/src/components/manageProjects/editProject.js index 399bc3ab..b626087c 100644 --- a/client/src/components/manageProjects/editProject.js +++ b/client/src/components/manageProjects/editProject.js @@ -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'; @@ -92,7 +92,7 @@ const EditProject = ({ />