Skip to content

Commit

Permalink
[INLONG-9708][Dashboard] Module audit query date optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
bluewang committed Feb 20, 2024
1 parent 23e3e00 commit 5f0e66d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions inlong-dashboard/src/ui/pages/ModuleAudit/IdModule/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
},
},
{
Expand Down
4 changes: 2 additions & 2 deletions inlong-dashboard/src/ui/pages/ModuleAudit/IpModule/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
},
},
{
Expand Down

0 comments on commit 5f0e66d

Please sign in to comment.