bbovenzi commented on code in PR #50732:
URL: https://github.com/apache/airflow/pull/50732#discussion_r2103455134
##########
airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx:
##########
@@ -122,7 +136,25 @@ export const DagsFilters = () => {
[searchParams, setSearchParams],
);
+ const handleInputChange = useDebouncedCallback((newValue) => {
+ if (pattern !== `${newValue}%`) {
+ setTagsList([]);
+ }
Review Comment:
Let's just use the API response instead of having our own tags list state
--
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]