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.
   
   
![Image](https://github.com/user-attachments/assets/454175e0-5bdd-4d31-a088-3b99d5cae27d)
   
![Image](https://github.com/user-attachments/assets/6f3d1678-8296-4976-9458-5fcda3d29a38)
   
![Image](https://github.com/user-attachments/assets/44ac20a6-22aa-4f8f-a8e8-3c5399187ac2)
   
   ### 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: commits-unsubscr...@airflow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to