Merge pull request #5701 from mempool/natsoni/fix-inscription-badge

Fix inscription badge disappearing when loading more inputs
This commit is contained in:
softsimon 2024-12-21 16:07:22 +07:00 committed by GitHub
commit 4b56144e6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -351,8 +351,12 @@ export class TransactionsListComponent implements OnInit, OnChanges {
this.electrsApiService.getTransaction$(tx.txid)
.subscribe((newTx) => {
tx['@vinLoaded'] = true;
let temp = tx.vin;
tx.vin = newTx.vin;
tx.fee = newTx.fee;
for (const [index, vin] of temp.entries()) {
newTx.vin[index].isInscription = vin.isInscription;
}
this.ref.markForCheck();
});
}