Skip to content

Commit

Permalink
Merge pull request ava-labs#122 from ava-labs/dev
Browse files Browse the repository at this point in the history
Fix bug where an nft gets added assets dict
  • Loading branch information
kanatliemre authored Jan 7, 2021
2 parents b2b40f2 + fe51018 commit 0dac599
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/SidePanels/TxHistoryValue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@ export default class TxHistoryValue extends Vue {
}
created() {
if (!this.asset) {
this.$store.dispatch('Assets/addUnknownAsset', this.assetId)
if (this.type === 'base') {
if (!this.asset) {
this.$store.dispatch('Assets/addUnknownAsset', this.assetId)
}
}
}
}
Expand Down

0 comments on commit 0dac599

Please sign in to comment.