This is an automated email from the ASF dual-hosted git repository. vernedeng pushed a commit to branch branch-1.8 in repository https://gitbox.apache.org/repos/asf/inlong.git
commit 1f60f9409837f214e70ac1bc966fade8a107c839 Author: haifxu <[email protected]> AuthorDate: Tue Jul 11 20:07:55 2023 +0800 [INLONG-8500][Dashboard] Fix stream data preview url error (#8501) --- inlong-dashboard/src/ui/pages/GroupDetail/DataStream/PreviewModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/PreviewModal.tsx b/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/PreviewModal.tsx index 001152bb9b..69620bf6bd 100644 --- a/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/PreviewModal.tsx +++ b/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/PreviewModal.tsx @@ -64,7 +64,7 @@ const Comp: React.FC<Props> = ({ inlongGroupId, inlongStreamId, ...modalProps }) const { data: previewData, run: getPreviewData } = useRequest( { - url: '/stream/queryMessage', + url: '/stream/listMessage', params: { groupId: inlongGroupId, streamId: inlongStreamId,
