softwaredevPK opened a new issue, #55213:
URL: https://github.com/apache/airflow/issues/55213

   ### Apache Airflow version
   
   2.11.0
   
   ### If "Other Airflow 2 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   If a DAG contains "object" Param having not having default set, then the 
manual triggering for it doesn't succeed. In this case, If I push "Trigger" 
button in UI, it just doesn't react (of course this field is filled manually). 
   I noticed that the reason is because  the text that I write is not copied 
into hidden <textare>, and therefore validation error arise, but as this field 
is hidden, there is no information for user, and its clearly a bug.
   
   <img width="1061" height="334" alt="Image" 
src="https://github.com/user-attachments/assets/8774f114-5092-437c-b810-d51c6149ffed";
 />
   
   ### What you think should happen instead?
   
   There is clearly an error in console probably connected to this issue.
   
   ### How to reproduce
   
   `from airflow import DAG                                                     
                                                                                
                                                                                
              
   from airflow.operators.dummy import DummyOperator                            
                                                                                
                                                                                
             
   from airflow.models import Param                                             
                                                                                
                                                                                
             
                                                                                
                                                 
   with DAG(                                                                    
                                                                                
                                                                                
             
       "run-test",                                                              
                                                                                
                                                                                
             
       params={                                                                 
                                                                                
                                                                                
             
           "object_param": Param( type="object", description="Object field"),   
                                                                                
                                                                                
                                                                             
       },                                                                       
                                                                                
                                                                                
             
       schedule=None,                                                           
                                                                                
                                                                                
             
       catchup=False,                                                           
                                                                                
                                                                                
             
    ) as dag:                                                                   
                                                                                
                                                                                
              
       DummyOperator(task_id="dummy_task") `
   
   ### Operating System
   
   Ubuntu 22.04.4 LTS
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Official Apache Airflow Helm Chart
   
   ### Deployment details
   
   _No response_
   
   ### Anything else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [x] I agree to follow this project's [Code of 
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


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