You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/06/22 10:14:16 UTC

[inlong] branch master updated: [INLONG-4739][Dashboard] The pagination of the execution log of the group is invalid (#4740)

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 <le...@outlook.com>
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();