Skip to content

Commit

Permalink
Activity filter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mpwanyi256 committed Dec 6, 2022
1 parent 44e61fd commit 54dc126
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Head.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default {
async switchNetwork(network) {
await this.changeActiveNetwork({ network })
if (this.$route.name !== 'WalletAssets') {
await this.$router.replace({ name: 'WalletAssets'})
await this.$router.replace({ name: 'WalletAssets' })
}
this.showNetworks = false
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/Account.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
</router-link>
</div>
</div>
<div class="account-container_transactions" v-if="activityData.length > 0">
<div class="account-container_transactions" v-if="activity.length">
<ActivityFilter
@filters-changed="applyFilters"
:activity-data="activityData"
Expand Down

0 comments on commit 54dc126

Please sign in to comment.