Skip to content

Commit

Permalink
fix: update total feedback labels count to use Feedback model
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Feb 18, 2025
1 parent 991690e commit 3e32c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ def get_kpi_stats(request):
total_models_with_status_published = Model.objects.filter(status=0).count()
total_registered_users = OsmUser.objects.count()
total_approved_predictions = ApprovedPredictions.objects.count()
total_feedback_labels = FeedbackLabel.objects.count()
total_feedback_labels = Feedback.objects.count()

data = {
"total_models_published": total_models_with_status_published,
Expand Down

0 comments on commit 3e32c8b

Please sign in to comment.