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 c9da983405 [INLONG-9950][Dashboard] Fix audit query using incorrect end time (#9951) c9da983405 is described below commit c9da983405627b1432486f514aa336ef3917a828 Author: haifxu <xhf1208357...@gmail.com> AuthorDate: Wed Apr 10 12:00:57 2024 +0800 [INLONG-9950][Dashboard] Fix audit query using incorrect end time (#9951) --- inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx index 6a9525905c..e0a91afa46 100644 --- a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx +++ b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx @@ -117,7 +117,7 @@ const Comp: React.FC<Props> = ({ inlongGroupId }) => { setQuery({ ...allValues, startDate: +allValues.startDate.$d, - endDate: +allValues.startDate.$d, + endDate: +allValues.endDate.$d, }) } />