style: lint
Some checks failed
Build / Build-and-ng-test (pull_request) Failing after 1m16s

This commit is contained in:
Mihajlo Medjedovic 2024-05-30 09:47:38 +02:00
parent 9a79f37bf1
commit e98f288302

View File

@ -1,18 +1,17 @@
import { Directive, HostListener } from '@angular/core';
import { Directive, HostListener } from '@angular/core'
@Directive({
selector: '[appStealFocus]'
})
export class StealFocusDirective {
constructor() { }
constructor() {}
/**
* For some reason newest version of Clarity v17.0.1 is stealing focus when
* clicking on the input inside of the clr-tree-view
* This is workaround
*/
@HostListener('click', ['$event']) onClick(event: any){
@HostListener('click', ['$event']) onClick(event: any) {
event.target.focus()
}
}