in frontend/src/app/modules/config-editor/components/config-editor-tooltip/config-editor-tooltip.directive.ts [66:77]
showTooltipOnClick() {
if(this.isTooltipClicked){
this.closeTooltip();
return;
}
if(!this.isTooltipClicked && this.isTooltipHovered){
this.isTooltipClicked = true;
if(!this.isTooltipShown){
this.showTooltip();
}
}
}