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

   ### Apache Airflow version
   
   3.1.6
   
   ### If "Other Airflow 3 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   When more than 50 plugins are present, only the first 50 plugins are 
displayed on the Plugins page. There is no pagination, scrolling, or indication 
that additional plugins exist.
   
   ### What you think should happen instead?
   
   Pagination should exist. I checked Plugins.tsx and pagination is not 
implemented for this page.
   
   ### How to reproduce
   
   To reproduce on local:
   1) 1. **Create 100 test plugins:**
   ```bash
      TIMESTAMP=$(date +%s)
      for i in {1..100}; do
      cat < $AIRFLOW_HOME/plugins/e2e_plugin_${TIMESTAMP}_${i}.py
      from airflow.plugins_manager import AirflowPlugin
      
      class E2EPlugin${TIMESTAMP}_${i}(AirflowPlugin):
          name = "e2e_plugin_${TIMESTAMP}_${i}"
      EOF
      done
   ```
   2) Restart Airflow.
   3) Open http://localhost:28080 and login as admin, navigate to Plugins in 
the Airflow UI
   
   **Expected:** Plugins page should have pagination
   **Actual:** No pagination controls visible
   
   ### Operating System
   
   Windows
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Official Apache Airflow Helm Chart
   
   ### Deployment details
   
   _No response_
   
   ### Anything else?
   
   I am willing to submit a PR and can work on implementing pagination for the 
Plugins page UI.
   
   ### Are you willing to submit PR?
   
   - [x] 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