Skip to content

Commit 0dac599

Browse files
authored
Merge pull request ava-labs#122 from ava-labs/dev
Fix bug where an nft gets added assets dict
2 parents b2b40f2 + fe51018 commit 0dac599

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/SidePanels/TxHistoryValue.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,10 @@ export default class TxHistoryValue extends Vue {
106106
}
107107
108108
created() {
109-
if (!this.asset) {
110-
this.$store.dispatch('Assets/addUnknownAsset', this.assetId)
109+
if (this.type === 'base') {
110+
if (!this.asset) {
111+
this.$store.dispatch('Assets/addUnknownAsset', this.assetId)
112+
}
111113
}
112114
}
113115
}

0 commit comments

Comments
 (0)