Skip to content

Commit

Permalink
Fixed swapped findings entities and findings topics counts. (daxa-ai#238
Browse files Browse the repository at this point in the history
)
  • Loading branch information
shreyas-damle committed Feb 28, 2024
1 parent e8446b2 commit 704866e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pebblo/app/service/local_ui_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def get_all_apps_details():
continue
report_summary = app_detail_json.get("reportSummary")
app_name = app_json.get("name")
findings_entities = report_summary.get("findingsTopics", 0)
findings_topics = report_summary.get("findingsEntities", 0)
findings_entities = report_summary.get("findingsEntities", 0)
findings_topics = report_summary.get("findingsTopics", 0)
app_details = AppListDetails(
name=app_json.get("name"),
topics=findings_topics,
Expand Down

0 comments on commit 704866e

Please sign in to comment.