From fc06c0266569d7ee7aa2752ea06fb0bd7d60c5cf Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Tue, 19 May 2026 00:00:34 +0700 Subject: [PATCH] feat(client): make onChangeBenchmark protected --- .../benchmark-comparator.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts b/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts index 33835bfa3..83b9c2d90 100644 --- a/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts +++ b/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts @@ -113,14 +113,14 @@ export class GfBenchmarkComparatorComponent implements OnChanges, OnDestroy { } } - public onChangeBenchmark(symbolProfileId: string) { - this.benchmarkChanged.emit(symbolProfileId); - } - public ngOnDestroy() { this.chart?.destroy(); } + protected onChangeBenchmark(symbolProfileId: string) { + this.benchmarkChanged.emit(symbolProfileId); + } + private initialize() { const benchmarkDataValues: Record = {};