Highlight url input/output in tx diagram & list

This commit is contained in:
Mononaut
2022-10-04 23:30:14 +00:00
parent 626a1a2977
commit 75fd036ec2
7 changed files with 40 additions and 5 deletions

View File

@@ -104,7 +104,7 @@ export class TransactionsListComponent implements OnInit, OnChanges {
if (changes.inputIndex || changes.outputIndex || changes.rowLimit) {
this.inputRowLimit = Math.max(this.rowLimit, (this.inputIndex || 0) + 3);
this.outputRowLimit = Math.max(this.rowLimit, (this.outputIndex || 0) + 3);
if (this.inputIndex || this.outputIndex) {
if ((this.inputIndex || this.outputIndex) && !changes.transactions) {
setTimeout(() => {
const assetBoxElements = document.getElementsByClassName('assetBox');
if (assetBoxElements && assetBoxElements[0]) {