Răsfoiți Sursa

Get logs for bucket when click expanded

jnfrati 4 ani în urmă
părinte
comite
bc462358dc

+ 4 - 2
dashboard/src/components/events/sub-events/LogBucketCard.tsx

@@ -46,8 +46,10 @@ const LogBucketCard: React.FunctionComponent<LogBucketCardProps> = ({
   };
 
   useEffect(() => {
-    getLogsForBucket();
-  }, [currentProject, currentCluster, logEvent]);
+    if (isExpanded && (!Array.isArray(logs) || !logs.length)) {
+      getLogsForBucket();
+    }
+  }, [currentProject, currentCluster, logEvent, isExpanded]);
 
   return (
     <StyledCard>