fix #6393 bug(nimbus): remove duplicates from owners drop down (#6398)

Because

* Whenever you filter by a related entity in django you'll always get duplicates in the results set so you have to add a .distinct() to the end of it

This commit

* Adds the necessary distinct filter to the owners queryset
This commit is contained in:
Jared Lockhart 2021-09-09 19:54:05 -04:00 коммит произвёл GitHub
Родитель 29a2e1febe
Коммит 6d1599d72d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -234,6 +234,7 @@ class NimbusConfigurationType(graphene.ObjectType):
return (
get_user_model()
.objects.filter(owned_nimbusexperiments__isnull=False)
.distinct()
.order_by("email")
)