question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Add support for loading all large diffs at once

See original GitHub issue

Issuehunt badges

by default larges diffs are not shown. If a PR contains many large diffs, one has to go over them one by one and there is a risk to miss something in a code review.

It would be great to have a button at the top “load all diffs”.


IssueHunt Summary

notlmn notlmn has been rewarded.

Backers (Total: $40.00)

Submitted pull Requests


Tips


IssueHunt has been backed by the following sponsors. Become a sponsor

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:59
  • Comments:22 (7 by maintainers)

github_iconTop GitHub Comments

17reactions
jm991commented, Jul 12, 2019

FWIW I have this issue on my team almost daily (games team) and I wrote some hacky JS to click all the buttons. Just press Ctrl+Shift+I in Chrome (Inspect) and run this in the console:

 var buttons = document.getElementsByClassName('load-diff-button');

 for(var i = 0; i < buttons.length; i++)  
     buttons[i].click();

image

It’ll take a bit, but it’ll click all of them for ya. No more going crazy clicking buttons.

17reactions
yakov116commented, Nov 22, 2017

@sgabler a feature branch can sometimes have many files changed drastically

Read more comments on GitHub >

github_iconTop Results From Across the Web

Add support for loading all large diffs at once #825 - GitHub
+1 for a button at the top to "load all diffs". An additional possible use case is having to search for all occurrences...
Read more >
Provide a way to load all diffs in a pull request at once to be ...
With a large pull request (lots of diffs), you have to keep scrolling down over and over to load everything before you can...
Read more >
Large github commit diff not shown - Stack Overflow
Create a bookmarklet called "Load all diffs". Click it to show all changed files on a GitHub PR.
Read more >
Merge requests with large diffs or diffs containing large files ...
When a Merge Request contains large diffs, the "Changes" tab spins forever without loading. The Merge Request page loads fine but when ...
Read more >
How we made diff pages three times faster | The GitHub Blog
Reduce request timeouts due to very large diffs. ... any performance impact by running the old and new diff loading strategies in production ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found