From 1df307eaffbfb012a1fe2c8ccd396a749e7ed036 Mon Sep 17 00:00:00 2001 From: octavioamu Date: Wed, 22 May 2019 16:22:21 -0300 Subject: [PATCH] fix org filters --- app/dashboard/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dashboard/views.py b/app/dashboard/views.py index 495e08ab200..cb02dbc24f0 100644 --- a/app/dashboard/views.py +++ b/app/dashboard/views.py @@ -813,7 +813,7 @@ def users_fetch(request): fulfilled__bounty__network=network, fulfilled__bounty__accepted=True, fulfilled__bounty__github_url__icontains=organisation - ) + ).distinct() params = dict() all_pages = Paginator(user_list, limit)