RED-4713 - In „Edit dossier dossier dictionary“ the help mode buttons on this page overlaps with the help mode buttons of the page below

This commit is contained in:
Valentin Mihai 2022-07-25 12:47:35 +03:00
parent 3a2dd1f160
commit cd09d72545

View File

@ -7,6 +7,7 @@ import { HelpModeService } from '../index';
templateUrl: './help-button.component.html',
})
export class HelpButtonComponent implements OnInit, OnDestroy {
@Input() dialogButton = true;
@Input() helpButtonKey?: string;
constructor(private readonly _helpModeService: HelpModeService) {}
@ -25,6 +26,6 @@ export class HelpButtonComponent implements OnInit, OnDestroy {
window.open(url, '_blank');
return;
}
this._helpModeService.activateHelpMode();
this._helpModeService.activateHelpMode(this.dialogButton);
}
}