Skip to content

Commit

Permalink
fix: organization_id added on create project
Browse files Browse the repository at this point in the history
  • Loading branch information
varun2948 committed Aug 25, 2023
1 parent 58464b7 commit 22e67b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,11 @@ const FormSelection: React.FC<any> = ({ customFormFile, setCustomFormFile, custo
xform_title: projectDetails.form_ways === 'Upload a Form' ? null : projectDetails.xform_title,
dimension: projectDetails.dimension,
splitting_algorithm: projectDetails.splitting_algorithm,
organization: projectDetails.organization,
form_ways: projectDetails.form_ways,
// "uploaded_form": projectDetails.uploaded_form,
data_extractWays: projectDetails.data_extractWays,
hashtags: arrayHashtag,
organisation_id: projectDetails.organization,
organisation_id: projectDetails.organisation_id,
},
newUpdatedTaskGeojsonFile,
customFormFile,
Expand Down
1 change: 1 addition & 0 deletions src/frontend/main/src/store/types/ICreateProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export type ProjectDetailsTypes = {
data_extract_options?: string;
data_extractWays?: string;
form_ways?: string;
organisation_id: number;
};

export type ProjectAreaTypes = {
Expand Down

0 comments on commit 22e67b4

Please sign in to comment.