diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-02 09:56:20 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-02 09:56:20 +0000 |
| commit | 230ce796836c25df26c130dbcd616ef97d12b2ec (patch) | |
| tree | 033d982409c89b5f90db0b3772827139c7a8bf80 /components/form-data/form-data-report-dialog.tsx | |
| parent | dfdfae3018f8499240f48d28ce634f4a5c56e006 (diff) | |
| parent | 9b6269c856516f3987ee249c6131a44728e276e2 (diff) | |
Merge branch 'dev' of https://github.com/DTS-Development/SHI_EVCP into dev
Diffstat (limited to 'components/form-data/form-data-report-dialog.tsx')
| -rw-r--r-- | components/form-data/form-data-report-dialog.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/form-data/form-data-report-dialog.tsx b/components/form-data/form-data-report-dialog.tsx index e28b4345..52262bf5 100644 --- a/components/form-data/form-data-report-dialog.tsx +++ b/components/form-data/form-data-report-dialog.tsx @@ -103,20 +103,20 @@ export const FormDataReportDialog: FC<FormDataReportDialogProps> = ({ <Dialog open={reportData.length > 0} onOpenChange={onClose}> <DialogContent className="w-[70vw]" style={{ maxWidth: "none" }}> <DialogHeader> - <DialogTitle>Report</DialogTitle> + <DialogTitle>Create Vendor Document</DialogTitle> <DialogDescription> - 사용하시고자 하는 Report Template를 선택하여 주시기 바랍니다. + 사용하시고자 하는 Vendor Document Template를 선택하여 주시기 바랍니다. </DialogDescription> </DialogHeader> <div className="h-[60px]"> - <Label>Report Template Select</Label> + <Label>Vendor Document Template Select</Label> <Select value={selectTemp} onValueChange={setSelectTemp} disabled={instance === null} > <SelectTrigger className="w-[100%]"> - <SelectValue placeholder="사용하시고자하는 Report Template를 선택하여 주시기 바랍니다." /> + <SelectValue placeholder="사용하시고자하는 Vendor Document Template을 선택하여 주시기 바랍니다." /> </SelectTrigger> <SelectContent> {tempList.map((c) => { @@ -145,7 +145,7 @@ export const FormDataReportDialog: FC<FormDataReportDialogProps> = ({ <DialogFooter> <Button onClick={downloadFileData} disabled={selectTemp.length === 0}> - 다운로드 + Create Vendor Document </Button> </DialogFooter> </DialogContent> |
