Lee-W commented on code in PR #70498:
URL: https://github.com/apache/airflow/pull/70498#discussion_r3680428689
##########
registry/src/js/provider-filters.js:
##########
@@ -40,9 +40,11 @@
const lifecycle = item.dataset.lifecycle;
const name = item.dataset.name || '';
const categories = item.dataset.categories || '';
+ const integrations = item.dataset.integrations || '';
const matchesLifecycle = currentLifecycle === 'all' || lifecycle ===
currentLifecycle;
- const matchesSearch = name.includes(currentSearch.toLowerCase());
+ const search = currentSearch.toLowerCase();
+ const matchesSearch = name.includes(search) ||
integrations.includes(search);
Review Comment:
<img width="2344" height="772" alt="image"
src="https://github.com/user-attachments/assets/f71909c3-7246-4a40-bfcb-28c3beb04ae0"
/>
--
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]