Help with the Web-UI: Problem with personal projects pagination

Hi,

Problem to solve

I’m a free user of GitLab and I have some projects, but managing them is difficult because the pagination on my project pages doesn’t work.

When I click on any pagination link (1, 2, 3, or Next), I always end up on the first page.

I tried to go directly to the second page by adding ?page=2 to the URL, but I encountered the same problem.

Generally, I use the Brave browser, but to check, I tried with Edge and Firefox, and it’s the same. It’s also the same in incognito mode, so without any plugins.

So, I checked the HTML in the developer tools and here is what I found:

<ul class="gl-justify-center">
<li aria-disabled="true" aria-hidden="true" class="disabled">
<span class="gl-pagination-item" data-testid="kaminari-pagination-prev">
<svg class="s16" data-testid="chevron-left-icon"><use href="/assets/icons-8791a66659d025e0a4c801978c79a1fbd82db1d27d85f044a35728ea7cf0ae80.svg#chevron-left"></use></svg>Previous</span>
</li>

<li class="js-pagination-page active js-first-button">
<a class="gl-pagination-item active" data-testid="kaminari-pagination-item" href="https://gitlab.com/users/breatfr/projects">1</a>
</li>

<li class="js-pagination-page sibling !gl-hidden md:!gl-block">
<a rel="next" class="gl-pagination-item" data-testid="kaminari-pagination-item" href="https://gitlab.com/users/breatfr/projects">2</a>
</li>

<li class="js-pagination-page js-last-button !gl-hidden md:!gl-block">
<a class="gl-pagination-item" data-testid="kaminari-pagination-item" href="https://gitlab.com/users/breatfr/projects">3</a>
</li>

<li>
<a rel="next" class="gl-pagination-item" data-testid="kaminari-pagination-next" href="https://gitlab.com/users/breatfr/projects">Next
<svg class="s16" data-testid="chevron-right-icon"><use href="/assets/icons-8791a66659d025e0a4c801978c79a1fbd82db1d27d85f044a35728ea7cf0ae80.svg#chevron-right"></use></svg></a></li>
</ul>

As you can see, all links are the same.

Is there something i missed?

Steps to reproduce

  1. Go to https://gitlab.com/users/breatfr/projects
  2. Try using the pagination links.

Configuration

None, I use the official GitLab website.

Versions

  • Self-managed
  • GitLab.com
  • Dedicated

Thank you for your help!

Regards,