Skip to content

Commit

Permalink
Only return built apps
Browse files Browse the repository at this point in the history
  • Loading branch information
proteusvacuum committed Jun 4, 2024
1 parent dfb44ba commit 5d635b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corehq/ex-submodules/couchforms/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def get_exports_by_form(domain, use_es=False):

def _get_export_forms_by_app_es(domain):
rows = []
apps = AppES().domain(domain).run().hits
apps = AppES().domain(domain).is_build().run().hits
for app in apps:
for module_id, module in enumerate(app.get("modules", [])):
for form_id, form in enumerate(module.get("forms", [])):
Expand Down

0 comments on commit 5d635b9

Please sign in to comment.