diff --git a/components/form/article/edit-article-form.tsx b/components/form/article/edit-article-form.tsx index 97c97b2..5e93550 100644 --- a/components/form/article/edit-article-form.tsx +++ b/components/form/article/edit-article-form.tsx @@ -246,6 +246,7 @@ export default function EditArticleForm(props: { isDetail: boolean }) { tags: values.tags.join(","), description: htmlToString(values.description), htmlDescription: values.description, + createdAt: `${startDateValue} ${timeValue}:00`, }; const response = await updateArticle(String(id), formData);