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

lzwang 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 b85a6811b4 [INLONG-9708][Dashboard] Module audit query date 
optimization (#9709)
b85a6811b4 is described below

commit b85a6811b4e6b98327b58d58a829672cfe100761
Author: Lizhen <[email protected]>
AuthorDate: Wed Feb 21 10:08:07 2024 +0800

    [INLONG-9708][Dashboard] Module audit query date optimization (#9709)
---
 inlong-dashboard/src/ui/pages/ModuleAudit/IdModule/index.tsx | 4 ++--
 inlong-dashboard/src/ui/pages/ModuleAudit/IpModule/index.tsx | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/inlong-dashboard/src/ui/pages/ModuleAudit/IdModule/index.tsx 
b/inlong-dashboard/src/ui/pages/ModuleAudit/IdModule/index.tsx
index 4429e20420..7065252590 100644
--- a/inlong-dashboard/src/ui/pages/ModuleAudit/IdModule/index.tsx
+++ b/inlong-dashboard/src/ui/pages/ModuleAudit/IdModule/index.tsx
@@ -40,8 +40,8 @@ const Comp: React.FC = () => {
       method: 'POST',
       data: {
         ...query,
-        startDate: timestampFormat(query.startDate, 'yyyy-MM-dd'),
-        endDate: timestampFormat(query.endDate, 'yyyy-MM-dd'),
+        startDate: timestampFormat(query.startDate, 'yyyy-MM-dd HH:mm:ss'),
+        endDate: timestampFormat(query.endDate, 'yyyy-MM-dd HH:mm:ss'),
       },
     },
     {
diff --git a/inlong-dashboard/src/ui/pages/ModuleAudit/IpModule/index.tsx 
b/inlong-dashboard/src/ui/pages/ModuleAudit/IpModule/index.tsx
index 742952739a..7e97bad15b 100644
--- a/inlong-dashboard/src/ui/pages/ModuleAudit/IpModule/index.tsx
+++ b/inlong-dashboard/src/ui/pages/ModuleAudit/IpModule/index.tsx
@@ -41,8 +41,8 @@ const Comp: React.FC = () => {
       method: 'POST',
       data: {
         ...query,
-        startDate: timestampFormat(query.startDate, 'yyyy-MM-dd'),
-        endDate: timestampFormat(query.endDate, 'yyyy-MM-dd'),
+        startDate: timestampFormat(query.startDate, 'yyyy-MM-dd HH:mm:ss'),
+        endDate: timestampFormat(query.endDate, 'yyyy-MM-dd HH:mm:ss'),
       },
     },
     {

Reply via email to