Jasperora commented on code in PR #53064:
URL: https://github.com/apache/airflow/pull/53064#discussion_r2215083872


##########
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:
   Hi @bbovenzi, I followed @pierrejeambrun's suggestion and modify the css 
props. Please watch the demo to see if it satisfies the need.
   
   
https://github.com/user-attachments/assets/f3307396-bcd7-4a7c-ba11-133feb276c3a
   
   I've tried English and French. In English the width of delete dag button is 
smaller, the opposite holds in French. Trying both of them makes a complete 
test.



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