diff options
| author | rlaks5757 <rlaks5757@gmail.com> | 2025-03-31 17:23:48 +0900 |
|---|---|---|
| committer | rlaks5757 <rlaks5757@gmail.com> | 2025-03-31 17:23:48 +0900 |
| commit | 3e47b8275454452324e3b6a7607f2db361110b0e (patch) | |
| tree | b6a3be3c1d4c8dd8d0dda9bc33f5974c32261a71 /components/form-data/form-data-report-dialog.tsx | |
| parent | 311ba2c57fe75ef378bf272c4ccf9fdee7843973 (diff) | |
Report -> Vendor Document 문구 수정, Upload Dialog Design Layout 변경
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> |
