atul-astronomer opened a new issue, #61486:
URL: https://github.com/apache/airflow/issues/61486

   ### Apache Airflow version
   
   main (development)
   
   ### If "Other Airflow 3 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   <img width="1357" height="624" alt="Image" 
src="https://github.com/user-attachments/assets/4d2a3b23-8a7a-4dca-bc47-a09ce4e9bf98";
 />
   
   ### What you think should happen instead?
   
   _No response_
   
   ### How to reproduce
   
   1. Run a dag which generates an XCom on Airflow main branch.
   2. Navigate to the XCom page.
   3. Edit the XCom, on first attempt, notice that the XCom value is visible.
   4. Once updated, try to edit the same XCom again and notice that the value 
is not populating again.
   
   Below dag can be used to repro:
   ```python
   import datetime
   
   from airflow.providers.standard.operators.bash import BashOperator
   from airflow import DAG
   
   dag = DAG(
   'test_api_dag',
   start_date=datetime.datetime(2025, 8,25),
   schedule='@daily',
   is_paused_upon_creation=False,
   catchup=False,
   )
   
   hello_task = BashOperator(
   task_id="hello",
   bash_command="echo hello",
   dag=dag
   )
   
   hello_task
   ``` 
   
   ### Operating System
   
   Linux
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Other
   
   ### 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