This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 5fe27c82e0 Remove unused pageSize method. (#37319)
5fe27c82e0 is described below

commit 5fe27c82e0fa33bba52cc5f4c0478c1514562462
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Feb 13 00:04:29 2024 +0100

    Remove unused pageSize method. (#37319)
---
 airflow/www/static/js/dags.js | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/airflow/www/static/js/dags.js b/airflow/www/static/js/dags.js
index ea53be18ac..6c20a1681b 100644
--- a/airflow/www/static/js/dags.js
+++ b/airflow/www/static/js/dags.js
@@ -95,11 +95,6 @@ $("#dag_query").on("keypress", (e) => {
   }
 });
 
-$("#page_size").on("change", function onPageSizeChange() {
-  const pSize = $(this).val();
-  window.location = `${DAGS_INDEX}?page_size=${pSize}`;
-});
-
 $.each($("[id^=toggle]"), function toggleId() {
   const $input = $(this);
   const dagId = $input.data("dag-id");

Reply via email to