jnfrati %!s(int64=4) %!d(string=hai) anos
pai
achega
c01c2f7dca

+ 1 - 1
dashboard/src/components/events/sub-events/LogBucketCard.tsx

@@ -77,7 +77,7 @@ const LogBucketCard: React.FunctionComponent<LogBucketCardProps> = ({
           {/* Case: No logs found after the api call */}
           {!isLoading && !logs?.length && <Loading>No logs found.</Loading>}
           {/* Case: Logs were found successfully  */}
-          {!isLoading && logs?.length && logs?.map((l) => <Log>{l}</Log>)}
+          {!isLoading && !!logs?.length && logs?.map((l) => <Log>{l}</Log>)}
         </>
       )}
     </StyledCard>