Skip to content

Commit

Permalink
Merge pull request #16821 from geoand/#16805
Browse files Browse the repository at this point in the history
Prevent exception in the Dev UI when tests have not yet been run
  • Loading branch information
geoand authored Apr 27, 2021
2 parents 8d94f6a + e5f8c79 commit 1f560e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</div>
{/for}
<hr/>
{#for cn in info:tests.results.passing}
{#for cn in info:tests.results.passing.orEmpty}
<div class="col mb-12">
<div class="card h-100 shadow">
<div class="card-header bg-success text-light">
Expand Down Expand Up @@ -85,7 +85,7 @@
</div>
</div>
{/for}
{#for cn in info:tests.results.skipped}
{#for cn in info:tests.results.skipped.orEmpty}
<div class="col mb-12">
<div class="card h-100 shadow">
<div class="card-header bg-warning text-light">
Expand Down

0 comments on commit 1f560e9

Please sign in to comment.