RED-6150: lint

This commit is contained in:
Valentin Mihai 2023-04-10 18:02:11 +03:00
parent 5c442ced9f
commit d8eff726c9

View File

@ -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;
}