From ed9f792d219b37e7376c556f959a2ef4e010b473 Mon Sep 17 00:00:00 2001 From: nymkappa <1612910616@pm.me> Date: Tue, 23 Apr 2024 17:54:04 +0200 Subject: [PATCH] fix typo --- .../src/app/components/rbf-timeline/rbf-timeline.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/rbf-timeline/rbf-timeline.component.ts b/frontend/src/app/components/rbf-timeline/rbf-timeline.component.ts index 21a6d1ede..83654a137 100644 --- a/frontend/src/app/components/rbf-timeline/rbf-timeline.component.ts +++ b/frontend/src/app/components/rbf-timeline/rbf-timeline.component.ts @@ -51,7 +51,7 @@ export class RbfTimelineComponent implements OnInit, OnChanges { ngOnChanges(changes): void { this.rows = this.buildTimelines(this.replacements); - if (changes.txid &&!changes.txid.firstChange && changes.txid.previousVaue !== changes.txid.currentValue) { + if (changes.txid && !changes.txid.firstChange && changes.txid.previousValue !== changes.txid.currentValue) { setTimeout(() => { this.scrollToSelected(); }); } }