Fix for javascript errors when navigating blocks

This commit is contained in:
softsimon
2022-12-01 23:12:02 +09:00
parent 5ff5275b36
commit 3572ba837d
2 changed files with 5 additions and 0 deletions

View File

@@ -91,6 +91,9 @@ export class TransactionsListComponent implements OnInit, OnChanges {
filter(() => this.stateService.env.LIGHTNING),
switchMap((txIds) => this.apiService.getChannelByTxIds$(txIds)),
tap((channels) => {
if (!this.transactions) {
return;
}
const transactions = this.transactions.filter((tx) => !tx._channels);
channels.forEach((channel, i) => {
transactions[i]._channels = channel;