With 55 todos in my account, my todos page count should be 3 since there are 20 todos on each page. However, when I am on my first page of todos it only looks like I have two pages. Going to my second page shows all three.
Kaminari renders the ellipsis when there are more pages that it needs to render
This issue will not appear when there are more than (probably) 5 pages in the pagination, since the ellipsis gets rendered by Kaminari. When responsive media queries kick in, the page button becomes hidden, and the ellipsis remains there which makes sense.
When there are less than say 5 pages however, Kaminari does not think it needs to truncate and will not render the ellipsis.
When the window is resized, the gl-pagination media queries will kick in and hide some of those page numbers
1 2 3 4 (Before resize, note no ellipsis)1 2 (After resize, page 3 and 4 disappears)
In my view, the things to consider would be
Do we want to hide those buttons if all of those buttons resized nicely from the responsiveness? That is users get to clearly see those page buttons and tap them.
Introduce a fix to insert the ellipsis, and make it hidden with a wide screen and appear on a narrow screen
I prefer #1 (closed) - to show all pages if they all still fit at all device sizes. There is no need to hide page 3-4 if there are only 4 pages and all buttons fit.
We only need the ellipses if there are 5+ pages, for example, and the number doesn't fit the responsiveness.
GitLab is moving all development for both GitLab Community Edition
and Enterprise Edition into a single codebase. The current
gitlab-ce repository will become a read-only mirror, without any
proprietary code. All development is moved to the current
gitlab-ee repository, which we will rename to just gitlab in the
coming weeks. As part of this migration, issues will be moved to the
current gitlab-ee project.
If you have any questions about all of this, please ask them in our
dedicated FAQ issue.
Using "gitlab" and "gitlab-ce" would be confusing, so we decided to
rename gitlab-ce to gitlab-foss to make the purpose of this FOSS
repository more clear
I created a merge requests for CE, and this got closed. What do I
need to do?
Everything in the ee/ directory is proprietary. Everything else is
free and open source software. If your merge request does not change
anything in the ee/ directory, the process of contributing changes
is the same as when using the gitlab-ce repository.
Will you accept merge requests on the gitlab-ce/gitlab-foss project
after it has been renamed?
No. Merge requests submitted to this project will be closed automatically.
Will I still be able to view old issues and merge requests in
gitlab-ce/gitlab-foss?
Yes.
How will this affect users of GitLab CE using Omnibus?
No changes will be necessary, as the packages built remain the same.
How will this affect users of GitLab CE that build from source?
Once the project has been renamed, you will need to change your Git
remotes to use this new URL. GitLab will take care of redirecting Git
operations so there is no hard deadline, but we recommend doing this
as soon as the projects have been renamed.
Where can I see a timeline of the remaining steps?