diff --git a/libs/ui/src/lib/benchmark/benchmark.component.ts b/libs/ui/src/lib/benchmark/benchmark.component.ts index 98831a815..5fb8cbcdf 100644 --- a/libs/ui/src/lib/benchmark/benchmark.component.ts +++ b/libs/ui/src/lib/benchmark/benchmark.component.ts @@ -17,11 +17,10 @@ import { ChangeDetectionStrategy, Component, DestroyRef, - EventEmitter, Input, OnChanges, - Output, inject, + output, viewChild } from '@angular/core'; import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; @@ -70,7 +69,7 @@ export class GfBenchmarkComponent implements OnChanges { @Input() showSymbol = true; @Input() user: User; - @Output() itemDeleted = new EventEmitter(); + public readonly itemDeleted = output(); protected readonly sort = viewChild(MatSort);