diff options
Diffstat (limited to 'lib/pq/pq-review-table-new/request-investigation-dialog.tsx')
| -rw-r--r-- | lib/pq/pq-review-table-new/request-investigation-dialog.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pq/pq-review-table-new/request-investigation-dialog.tsx b/lib/pq/pq-review-table-new/request-investigation-dialog.tsx index 6941adbb..aaf10a71 100644 --- a/lib/pq/pq-review-table-new/request-investigation-dialog.tsx +++ b/lib/pq/pq-review-table-new/request-investigation-dialog.tsx @@ -55,7 +55,7 @@ const requestInvestigationFormSchema = z.object({ required_error: "QM 담당자를 선택해주세요.",
}),
forecastedAt: z.date({
- required_error: "실사 예정일을 선택해주세요.",
+ required_error: "실사 수행 예정일을 선택해주세요.",
}),
investigationAddress: z.string().min(1, "실사 장소를 입력해주세요."),
investigationMethod: z.string().optional(),
@@ -189,7 +189,7 @@ export function RequestInvestigationDialog({ name="forecastedAt"
render={({ field }) => (
<FormItem className="flex flex-col">
- <FormLabel>실사 예정일</FormLabel>
+ <FormLabel>실사 수행 예정일</FormLabel>
<Popover>
<PopoverTrigger asChild>
<FormControl>
@@ -201,7 +201,7 @@ export function RequestInvestigationDialog({ {field.value ? (
format(field.value, "yyyy년 MM월 dd일")
) : (
- <span>실사 예정일을 선택하세요</span>
+ <span>실사 수행 예정일을 선택하세요</span>
)}
<CalendarIcon className="ml-auto h-4 w-4 opacity-50" />
</Button>
|
