Skip to content

Commit

Permalink
Show aura list when no updates and showAllAuras is set. Fix #82
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbuds committed Jan 24, 2019
1 parent a5ca8e6 commit fd5e2e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/renderer/components/LandingPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@
<br />
<div
id="aura-list"
v-bind:class="{ hidden: aurasWithUpdateSorted.length <= 0 }"
v-bind:class="{
hidden: config.showAllAuras
? aurasSorted.length <= 0
: aurasWithUpdateSorted.length <= 0
}"
>
<Aura
v-for="aura in config.showAllAuras
Expand Down

0 comments on commit fd5e2e4

Please sign in to comment.