diff --git a/src/app/debug/debug.component.ts b/src/app/debug/debug.component.ts index 2c58f643..3bfd80a3 100644 --- a/src/app/debug/debug.component.ts +++ b/src/app/debug/debug.component.ts @@ -48,9 +48,8 @@ export class DebugComponent implements OnInit { next: (views: View[]) => { this.views = views; if (!this.currentView) { - this.currentView = this.views.find((v: View) => v.defaultView)!; + this.onViewChange(this.views.find((v: View) => v.defaultView)!); } - this.retrieveErrorsAndWarnings(); }, }); } diff --git a/src/app/debug/table/table.component.html b/src/app/debug/table/table.component.html index 9439477e..c8f02ba8 100644 --- a/src/app/debug/table/table.component.html +++ b/src/app/debug/table/table.component.html @@ -107,7 +107,7 @@ @if (hasTimedOut) {

[One or more reports are in progress for more - than {{ this.reportsInProgressThreshold ?? 1 / 1000 / 60 }} minutes]

+ than {{ (this.reportsInProgressThreshold ?? 1) / 1000 / 60 }} minutes] }