guan404ming commented on code in PR #49770:
URL: https://github.com/apache/airflow/pull/49770#discussion_r2059863226


##########
airflow-core/src/airflow/ui/src/pages/Dashboard/Stats/Stats.tsx:
##########
@@ -56,7 +56,7 @@ export const Stats = () => {
         </Heading>
       </Flex>
 
-      <HStack columns={{ base: 1, lg: 5, md: 3 }} gap={4}>
+      <HStack columns={{ base: 1, lg: 6, md: 3 }} gap={4}>

Review Comment:
   Since currently there are six cards in `Stats`, we need 6 cols to handle 
them correctly if all of them are enabled



##########
airflow-core/src/airflow/ui/src/pages/Dashboard/Stats/DAGImportErrors.tsx:
##########
@@ -38,7 +38,7 @@ export const DAGImportErrors = ({ iconOnly = false }: { 
readonly iconOnly?: bool
     return <Skeleton height="9" width="225px" />;
   }
 
-  if (importErrorsCount === 0) {
+  if (importErrorsCount <= 0) {

Review Comment:
   Updated~



-- 
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