Skip to content

Commit

Permalink
fixed race condition
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Shanley <dave@quobix.com>
  • Loading branch information
daveshanley committed Jun 21, 2023
1 parent ef6cd44 commit d3c80fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/transaction/transaction-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ export class HttpTransactionContainerComponent extends LitElement {

// perform filtering.
this.filterComponents()
this._transactionView = new HttpTransactionViewComponent();
this._transactionView.linkCache = this._transactionLinkCache;
});

this._transactionLinkCache = new TransactionLinkCache()
this._transactionView = new HttpTransactionViewComponent();
this._transactionView.linkCache = this._transactionLinkCache;

}

Expand Down

0 comments on commit d3c80fb

Please sign in to comment.