Skip to content

Commit

Permalink
Auto merge of #1837 - rust-lang:fix-554, r=carols10cents
Browse files Browse the repository at this point in the history
Display loading message while dependencies are loading

Fixes #554.
  • Loading branch information
bors committed Oct 3, 2019
2 parents ceb8c82 + 6127cd1 commit e48470f
Show file tree
Hide file tree
Showing 3 changed files with 897 additions and 714 deletions.
6 changes: 5 additions & 1 deletion app/templates/crate/version.hbs
Expand Up @@ -221,7 +221,11 @@
{{#each currentDependencies as |dep|}}
{{link-to-dep tagName="li" dep=dep}}
{{else}}
<li>None</li>
{{#if (is-pending currentDependencies)}}
<li>Loading…</li>
{{else}}
<li>None</li>
{{/if}}
{{/each}}
</ul>
</div>
Expand Down

0 comments on commit e48470f

Please sign in to comment.