shubhamraj-git commented on code in PR #43367:
URL: https://github.com/apache/airflow/pull/43367#discussion_r1835682424


##########
airflow/ui/src/pages/DagsList/DagsList.tsx:
##########
@@ -102,6 +103,17 @@ const columns: Array<ColumnDef<DAGResponse>> = [
     enableSorting: false,
     header: () => "Tags",
   },
+  {
+    accessorKey: "trigger",
+    cell: ({ row }) => (
+      <TriggerDAGModal
+        dagDisplayName={row.original.dag_display_name}
+        dagId={row.original.dag_id}

Review Comment:
   In current scenario, we don't need more than dag_id,
   Once we integrate API, At that time, if needed, we can add the parent.



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