gopidesupavan commented on code in PR #63961:
URL: https://github.com/apache/airflow/pull/63961#discussion_r2963931487
##########
registry/src/explore.njk:
##########
@@ -59,7 +59,7 @@ mainClass: explore-page
<div class="provider-list">
{% set topProviders = [] %}
{% for provider in providers.providers %}
- {% set counts = provider.module_counts or {} %}
+ {% set counts = moduleCountsByProvider[provider.id] or {} %}
{% set totalMods = (counts.operator or 0) + (counts.hook or 0) +
(counts.sensor or 0) + (counts.trigger or 0) + (counts.transfer or 0) %}
Review Comment:
does it require additional modules like bundle , notifiers that are in types
file to count in totalMods?
--
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]