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 7278bb938 [INLONG-4739][Dashboard] The pagination of the execution log 
of the group is invalid (#4740)
7278bb938 is described below

commit 7278bb938d2cebf9dfe7fdd2d0d1e268a1cd658e
Author: Daniel <[email protected]>
AuthorDate: Wed Jun 22 18:14:09 2022 +0800

    [INLONG-4739][Dashboard] The pagination of the execution log of the group 
is invalid (#4740)
---
 inlong-dashboard/src/pages/AccessDashboard/ExecutionLogModal.tsx | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/inlong-dashboard/src/pages/AccessDashboard/ExecutionLogModal.tsx 
b/inlong-dashboard/src/pages/AccessDashboard/ExecutionLogModal.tsx
index 3abe3695e..7a0bdecaa 100644
--- a/inlong-dashboard/src/pages/AccessDashboard/ExecutionLogModal.tsx
+++ b/inlong-dashboard/src/pages/AccessDashboard/ExecutionLogModal.tsx
@@ -84,6 +84,12 @@ const Comp: React.FC<Props> = ({ inlongGroupId, 
...modalProps }) => {
     [getData, inlongGroupId, t],
   );
 
+  useUpdateEffect(() => {
+    if (modalProps.visible) {
+      getData();
+    }
+  }, [options]);
+
   useUpdateEffect(() => {
     if (modalProps.visible) {
       getData();

Reply via email to