uchicago-cs / chigame

BSD 3-Clause "New" or "Revised" License
2 stars 0 forks source link

Bug Fix: Pages numbers not displaying #411

Closed frowenz closed 9 months ago

frowenz commented 9 months ago

My auto formatter caused lines that were too long to wrap around in a way that ended up breaking the display of pagination numbers. Hence, this is PR is a just a simple fix to put this all on one line.

broken

<li class="page-item">
    <a class=...>{{
     page_obj.next_page_number }}</a>
</li>
Screenshot 2023-12-04 at 6 08 57 PM

working

<li class="page-item">
    <a class="....">{{ page_obj.next_page_number}}</a>
</li>
Screenshot 2023-12-04 at 6 13 25 PM