loucyx commented on code in PR #42184:
URL: https://github.com/apache/airflow/pull/42184#discussion_r1755787723


##########
airflow/ui/src/dagsList.tsx:
##########
@@ -110,53 +74,67 @@ const columns: ColumnDef<DAG>[] = [
       </HStack>
     ),
     enableSorting: false,
+    header: () => "Tags",
   },
 ];
 
-const QuickFilterButton = ({ children, ...rest }: ButtonProps) => (
-  <Button
-    borderRadius={20}
-    fontWeight="normal"
-    colorScheme="blue"
-    variant="outline"
-    {...rest}
-  >
-    {children}
-  </Button>
-);
-
 const PAUSED_PARAM = "paused";
 
-export const DagsList = () => {
-  const cardView = false;
+// eslint-disable-next-line complexity

Review Comment:
   Had to do this to keep the PR smaller, but the complexity of this function 
should be reduced.



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