+
+
diff --git a/src/lib/help-mode/help-mode/help-mode.component.ts b/src/lib/help-mode/help-mode/help-mode.component.ts
index 6293193..5709d51 100644
--- a/src/lib/help-mode/help-mode/help-mode.component.ts
+++ b/src/lib/help-mode/help-mode/help-mode.component.ts
@@ -1,11 +1,12 @@
-import { Component, HostListener } from '@angular/core';
+import { ChangeDetectionStrategy, Component, HostListener } from '@angular/core';
import { HelpModeService } from '../help-mode.service';
import { IqserEventTarget } from '../../utils/types/events.type';
@Component({
selector: 'iqser-help-mode',
templateUrl: './help-mode.component.html',
- styleUrls: ['./help-mode.component.scss']
+ styleUrls: ['./help-mode.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush
})
export class HelpModeComponent {
constructor(readonly helpModeService: HelpModeService) {}