This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 5d7e124461 [INLONG-10001][Dashboard] Fix end date time initialization 
error on audit page (#10002)
5d7e124461 is described below

commit 5d7e1244610011e55b583b0336a6ec841bbad48f
Author: haifxu <[email protected]>
AuthorDate: Wed Apr 17 16:49:34 2024 +0800

    [INLONG-10001][Dashboard] Fix end date time initialization error on audit 
page (#10002)
---
 inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx 
b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx
index 6463dfd1d7..ed39f678eb 100644
--- a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx
+++ b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx
@@ -178,7 +178,7 @@ export const getFormContent = (inlongGroupId, 
initialValues, onSearch, onDataStr
     type: 'datepicker',
     label: i18n.t('pages.GroupDetail.Audit.EndDate'),
     name: 'endDate',
-    initialValues: dayjs(initialValues.endDate),
+    initialValue: dayjs(initialValues.endDate),
     props: {
       allowClear: false,
       format: 'YYYY-MM-DD',

Reply via email to