arthur-ventura-astro opened a new issue, #50711:
URL: https://github.com/apache/airflow/issues/50711
### Apache Airflow version
3.0.1
### If "Other Airflow 2 version" selected, which one?
_No response_
### What happened?
When dealing with a big number of tags, the DAG tags filter appears to be
"truncating" the tags list.
Even when searching for a specific tag, it doesn't appear in the filter
dropdown.
The example used to test this is showcased in details below. The idea is
simple, to create a DAG with a significant amount of tags. The results can be
seen in the images below.



### What you think should happen instead?
All tags defined in the DAG should appear in the filter.
### How to reproduce
Create a DAG with the following tags parameter setting:
```python
...
with DAG(
dag_id="basic_example",
schedule="0 15 * * *",
start_date=datetime(2024, 11, 6),
catchup=False,
tags=[str(i) for i in range(1000)]
) as dag:
...
```
Then go to the DAG tags filter and search for a tag greater than 150.
### Operating System
MacOS 15.4.1
### Versions of Apache Airflow Providers
_No response_
### Deployment
Docker-Compose
### 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]