From d8eff726c967d43c59032add46eef7d318308fc9 Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Mon, 10 Apr 2023 18:02:11 +0300 Subject: [PATCH] RED-6150: lint --- src/lib/help-mode/help-mode/help-mode.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 8a27dc0..df27ffd 100644 --- a/src/lib/help-mode/help-mode/help-mode.component.ts +++ b/src/lib/help-mode/help-mode/help-mode.component.ts @@ -25,7 +25,7 @@ export class HelpModeComponent { const node = (event.target as IqserEventTarget).localName; if (!this.helpModeService.isHelpModeActive && node !== 'input' && node !== 'textarea') { if (this.helpModeService.helpButtonKey) { - const url = this.helpModeService.generateDocsLink(this.helpModeService.helpButtonKey);; + const url = this.helpModeService.generateDocsLink(this.helpModeService.helpButtonKey); window.open(url, '_blank'); return; }