bbovenzi commented on code in PR #55696:
URL: https://github.com/apache/airflow/pull/55696#discussion_r2353295666


##########
airflow-core/src/airflow/ui/src/pages/DeleteRunButton.tsx:
##########
@@ -28,17 +29,24 @@ import { useDeleteDagRun } from 
"src/queries/useDeleteDagRun";
 type DeleteRunButtonProps = {
   readonly dagRun: DAGRunResponse;
   readonly withText?: boolean;
-};
+} & ButtonProps;
 
-const DeleteRunButton = ({ dagRun, withText = true }: DeleteRunButtonProps) => 
{
+const DeleteRunButton = ({ dagRun, width, withText = true }: 
DeleteRunButtonProps) => {

Review Comment:
   ```suggestion
   const DeleteRunButton = ({ dagRun, withText = true, ...rest }: 
DeleteRunButtonProps) => {
   ```



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