bbovenzi commented on code in PR #46504:
URL: https://github.com/apache/airflow/pull/46504#discussion_r1946997765


##########
airflow/ui/src/pages/Dag/Overview/Overview.tsx:
##########
@@ -93,6 +100,15 @@ export const Overview = () => {
           startDate={startDate}
         />
       </HStack>
+      <SimpleGrid columns={3} gap={5} my={5}>
+        <Box borderRadius={4} borderStyle="solid" borderWidth={1} p={2}>
+          {isLoadingRuns ? (
+            <Skeleton height="200px" w="full" />
+          ) : (
+            <RunDuration runs={runs?.dag_runs} 
totalEntries={runs?.total_entries ?? 0} />

Review Comment:
   If there are no runs, we should display a message like "No runs for this 
date range"



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to