We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 731ee49 commit aaf509eCopy full SHA for aaf509e
1 file changed
api/types/type_collaborative.py
@@ -187,7 +187,7 @@ def metadata(self) -> Optional[List["TypeCollaborativeMetadata"]]:
187
def contributors(self) -> Optional[List["TypeUser"]]:
188
"""Get contributors associated with this collaborative."""
189
try:
190
- queryset = self.contributors.all().order_by("full_name") # type: ignore
+ queryset = self.contributors.all().order_by("first_name") # type: ignore
191
if not queryset.exists():
192
return []
193
return TypeUser.from_django_list(queryset)
0 commit comments