-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Number of commits from push listed on the start page is wrong #16804
Comments
I also found the bug. Even if you push one commit, but it will always display recent 5 commits. |
Found the fix - I'll have a PR up imminently. Nope I'm wrong here - I was looking at old data where the Len was present. The problem we now face is that the action table is being incorrectly created without the full Len data. |
Since the number of commits in the Action table has been limited to 5 the number of commits reported on the feeds page is now incorrectly also limited to 5. The correct number is available as the Len and this PR changes this to report this. Fix go-gitea#16804 Signed-off-by: Andrew Thornton <[email protected]>
OK This is a regression from #16282
|
Since the number of commits in the Action table has been limited to 5 the number of commits reported on the feeds page is now incorrectly also limited to 5. The correct number is available as the Len and this PR changes this to report this. Fix go-gitea#16804 Signed-off-by: Andrew Thornton <[email protected]>
Unfortunately I think the correct length for these actions is unrecoverable. |
* Report the correct number of pushes on the feeds Since the number of commits in the Action table has been limited to 5 the number of commits reported on the feeds page is now incorrectly also limited to 5. The correct number is available as the Len and this PR changes this to report this. Fix #16804 Signed-off-by: Andrew Thornton <[email protected]> * Update templates/user/dashboard/feeds.tmpl Co-authored-by: techknowlogick <[email protected]>
* Report the correct number of pushes on the feeds Since the number of commits in the Action table has been limited to 5 the number of commits reported on the feeds page is now incorrectly also limited to 5. The correct number is available as the Len and this PR changes this to report this. Fix go-gitea#16804 Signed-off-by: Andrew Thornton <[email protected]> * Update templates/user/dashboard/feeds.tmpl Co-authored-by: techknowlogick <[email protected]>
* Report the correct number of pushes on the feeds Since the number of commits in the Action table has been limited to 5 the number of commits reported on the feeds page is now incorrectly also limited to 5. The correct number is available as the Len and this PR changes this to report this. Fix #16804 Signed-off-by: Andrew Thornton <[email protected]> * Update templates/user/dashboard/feeds.tmpl Co-authored-by: techknowlogick <[email protected]> Co-authored-by: zeripath <[email protected]>
The number of commits from a push listed on the start page refers to the number of items in the list rather than the actual number of commits:
The text was updated successfully, but these errors were encountered: