push project data

This commit is contained in:
arc-alex
2023-11-26 16:40:35 +01:00
parent c714727801
commit 7b34c8f3b1
5 changed files with 179 additions and 16 deletions
+2 -2
View File
@@ -121,11 +121,11 @@ export const parseExcel = (excelData: unknown[][], options?: Partial<ExcelImport
const handlers = {
[importMap.projectName]: (row: number, col: number) => {
projectTitleNext = true;
projectMetadata['projectName'] = { row: row, col: col };
projectMetadata['title'] = { row: row, col: col };
},
[importMap.projectDescription]: (row: number, col: number) => {
projectDescriptionNext = true;
projectMetadata['projectDescription'] = { row: row, col: col };
projectMetadata['description'] = { row: row, col: col };
},
[importMap.publicUrl]: (row: number, col: number) => {
publicUrlNext = true;