shubhamraj-git commented on code in PR #43367: URL: https://github.com/apache/airflow/pull/43367#discussion_r1817185240
########## 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: Yes, completely right, Will do all these changes once I add the functionality. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org