bbovenzi commented on code in PR #53064: URL: https://github.com/apache/airflow/pull/53064#discussion_r2208585450
########## airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx: ########## @@ -77,6 +78,9 @@ export const DetailsLayout = ({ children, error, isLoading, tabs }: Props) => { <Flex gap={1}> <SearchDagsButton /> {dag === undefined ? undefined : <TriggerDAGButton dag={dag} />} + {dag === undefined ? undefined : ( + <DeleteDagButton dagDisplayName={dag.dag_display_name} dagId={dag.dag_id} /> + )} Review Comment: Oh yeah, we probably need to use a regular button there instead of the actionbutton that the dag delete button uses in the dags list. -- 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