Skip to content

Commit

Permalink
Remove unused pageSize method.
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk committed Feb 12, 2024
1 parent 27c6ffd commit 69f697e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions airflow/www/static/js/dags.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

/* global document, window, $, d3, STATE_COLOR, isoDateToTimeEl, autoRefreshInterval,
localStorage */

import { throttle } from "lodash";
import { getMetaValue } from "./utils";
import tiTooltip from "./task_instances";
Expand Down Expand Up @@ -95,11 +94,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");
Expand Down

0 comments on commit 69f697e

Please sign in to comment.