@@ -31,7 +31,11 @@ export default {
},
computed: {
opened() {
- return this.info ? (this.info.type === 'BLIND_BOX' ? this.info.opened : true) : true;
+ return this.info
+ ? this.info.type === 'BLIND_BOX' && !this.info.fromAssetId
+ ? this.info.opened
+ : true
+ : true;
}
};