Skip to content

Commit

Permalink
Fix infinite items load for committee admin pages (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
aramboi authored Jun 14, 2021
1 parent 1b2f97f commit 4a2f76c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion civil_society_vote/hub/templates/committee/candidates.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h2 class="title border-b uppercase">
<div class="is-multiline infinite-container">
{% for candidate in page_obj %}

<div class="need is-flex container">
<div class="need is-flex container infinite-item">
<div class="card-info">
<div class="flex-align-center">
<div class="need-title is-hidden-tablet">{{candidate.name}}</div>
Expand Down
2 changes: 1 addition & 1 deletion civil_society_vote/hub/templates/committee/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h2 class="title border-b uppercase">{% trans 'Rejected Organisations' %} ({{ co

<div class="columns is-multiline infinite-container">
{% for ngo in page_obj %}
<div class="need is-flex container">
<div class="need is-flex container infinite-item">
<div class="card-info">
<div class="flex-align-center">
<div class="card-image need-logo is-hidden-tablet">
Expand Down

0 comments on commit 4a2f76c

Please sign in to comment.