Skip to content

Commit

Permalink
decrease limit
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamraj-git committed Jan 17, 2025
1 parent 11cbdd6 commit f2481c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion airflow/ui/src/pages/Variables/Variables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ const getColumns = ({
];

export const Variables = () => {
const { setTableURLState, tableURLState } = useTableURLState();
const { setTableURLState, tableURLState } = useTableURLState({
pagination: { pageIndex: 0, pageSize: 30 },
}); // To make multiselection smooth
const [searchParams, setSearchParams] = useSearchParams();
const { NAME_PATTERN: NAME_PATTERN_PARAM }: SearchParamsKeysType = SearchParamsKeys;
const [variableKeyPattern, setVariableKeyPattern] = useState(
Expand Down

0 comments on commit f2481c2

Please sign in to comment.