bbovenzi commented on code in PR #48442:
URL: https://github.com/apache/airflow/pull/48442#discussion_r2016856829
##########
airflow-core/src/airflow/ui/src/pages/Pools/Pools.tsx:
##########
@@ -32,8 +33,17 @@ export const Pools = () => {
const [searchParams, setSearchParams] = useSearchParams();
const { NAME_PATTERN: NAME_PATTERN_PARAM }: SearchParamsKeysType =
SearchParamsKeys;
const [poolNamePattern, setPoolNamePattern] =
useState(searchParams.get(NAME_PATTERN_PARAM) ?? undefined);
+
+ const { tableURLState } = useTableURLState();
Review Comment:
Thanks for picking this up.
We need `setTableURLState` from here too and pass it to the table component
like so: `<DataTable onStateChange={setTableURLState}`.
--
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]