Don't display "Loading..." for coverage which will never load

Summary: In very large diffs.

Test Plan:
Display very large diff.
Display normal diff.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, epriestley

Differential Revision: https://secure.phabricator.com/D1918
This commit is contained in:
vrana
2012-03-15 10:45:35 -07:00
parent 9f849b9fab
commit a70466a7fd
3 changed files with 11 additions and 3 deletions

View File

@@ -105,7 +105,8 @@ final class DifferentialDiffViewController extends DifferentialController {
$changesets = msort($changesets, 'getSortKey');
$table_of_contents = id(new DifferentialDiffTableOfContentsView())
->setChangesets($changesets);
->setChangesets($changesets)
->setVisibleChangesets($changesets);
$refs = array();
foreach ($changesets as $changeset) {