diff --git a/scipost_django/colleges/managers.py b/scipost_django/colleges/managers.py
index 6bf0611656c7f027007ceac6f6a74cd694e8804a..5d2e0ef9639d79036241bdb45413148bd361b727 100644
--- a/scipost_django/colleges/managers.py
+++ b/scipost_django/colleges/managers.py
@@ -103,7 +103,7 @@ class FellowQuerySet(models.QuerySet):
 
         profile_CI, related_CI = CompetingInterest.objects.filter(
             Q(profile=profile) | Q(related_profile=profile)
-        ).values_list("profile", "related_profile")
+        ).values_list("profile", "related_profile") or ([], [])
 
         return self.exclude(
             contributor__profile__pk__in=profile_CI + related_CI,
diff --git a/scipost_django/colleges/templates/colleges/_hx_nomination_details_contents.html b/scipost_django/colleges/templates/colleges/_hx_nomination_details_contents.html
index 27a967d38b5f08b246d935d98bea4feb95b3e87e..a49c2ecaf578e098a9af6a84572e91e92a361ce2 100644
--- a/scipost_django/colleges/templates/colleges/_hx_nomination_details_contents.html
+++ b/scipost_django/colleges/templates/colleges/_hx_nomination_details_contents.html
@@ -136,7 +136,7 @@
     <details 
       {% if not nomination.invitation or 'edadmin' not in user_roles %}open{% endif %}
        class="card mb-3">
-      <summary class="card-header list-triangle">Voting Rounds</summary>
+      <summary class="card-header d-block list-triangle">Voting Rounds</summary>
       <div class="card-body">
         <div hx-get="{% url 'colleges:_hx_nomination_voting_rounds_tab' nomination_id=nomination.id round_id=nomination.latest_voting_round.id|default:0 %}"
              hx-trigger="intersect once"></div>