TJaniF opened a new issue, #48863:
URL: https://github.com/apache/airflow/issues/48863
### Apache Airflow version
3.0.0
### If "Other Airflow 2 version" selected, which one?
current main
### What happened?
I tried to enter a value for a dag param with this dag:
```
from airflow.decorators import dag, task
@dag(
params={
"param1": "value1",
"param2": "value2",
},
)
def configuration_dag():
@task
def fetch_conf(**context):
return context["params"]
fetch_conf()
configuration_dag()
```
and each key stroke causes //// to appear, including hitting backspace.
The movie:
https://github.com/user-attachments/assets/b53e7a3b-9f7f-4161-9a5a-91fd8ed87c5b
### What you think should happen instead?
What I type to appear in the field and backspace to delete things 😅
### How to reproduce
Add the dag above, click Trigger dag, try to change a param.
### Operating System
MacOs
### Versions of Apache Airflow Providers
Breeze soup
### Deployment
Other
### Deployment details
breeze
### 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]