diff options
| author | rlaks5757 <rlaks5757@gmail.com> | 2025-03-27 11:53:12 +0900 |
|---|---|---|
| committer | rlaks5757 <rlaks5757@gmail.com> | 2025-03-27 11:53:12 +0900 |
| commit | 23db698279eb8ea5f73f678ce6deb93267c4705e (patch) | |
| tree | 932095e15eedbcf726b407470b98e6e332256a8b /components/form-data/form-data-report-dialog.tsx | |
| parent | e0b2367d88dd80eece67390574e60c9eacdee14d (diff) | |
report batch download 개발 중
Diffstat (limited to 'components/form-data/form-data-report-dialog.tsx')
| -rw-r--r-- | components/form-data/form-data-report-dialog.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/form-data/form-data-report-dialog.tsx b/components/form-data/form-data-report-dialog.tsx index 5ddc5e0c..deb0873b 100644 --- a/components/form-data/form-data-report-dialog.tsx +++ b/components/form-data/form-data-report-dialog.tsx @@ -348,7 +348,7 @@ const importReportData: ImportReportData = async ( const objKey = label.split(" ").join("_"); - reportValueMapping[objKey] = reportValue[key]; + reportValueMapping[objKey] = reportValue?.[key] ?? ""; }); const doc = await createDocument(reportFileBlob, { |
