Skip to content

Commit

Permalink
RightSection: Exclude test tag
Browse files Browse the repository at this point in the history
  • Loading branch information
CedrikNikita committed Jun 22, 2020
1 parent c71f03a commit 67b9565
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/components/layout/RightSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,14 @@
:class="{ active: topics && topics.length > 0 }"
>
<div
v-for="([topic, data], idx) in topics"
v-for="([topic, data], idx) in topics.length && topics.filter(([t]) => t !== '#test')"
:key="idx"
class="section__item"
>
<div
v-if="topic !== '#test'"
class="topic-container text-ellipsis"
>
<div class="topic-container text-ellipsis">
<Topic :topic="topic" />
</div>
<AeAmountFiat
v-if="topic !== '#test'"
:amount="data.amount"
/>
<AeAmountFiat :amount="data.amount" />
</div>
</div>
</div>
Expand Down

1 comment on commit 67b9565

@mradkov
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.