|
|
@ -11,6 +11,7 @@ import { |
|
|
Input, |
|
|
Input, |
|
|
OnChanges, |
|
|
OnChanges, |
|
|
ViewChild, |
|
|
ViewChild, |
|
|
|
|
|
inject, |
|
|
output |
|
|
output |
|
|
} from '@angular/core'; |
|
|
} from '@angular/core'; |
|
|
import { Params, RouterModule } from '@angular/router'; |
|
|
import { Params, RouterModule } from '@angular/router'; |
|
|
@ -43,7 +44,7 @@ export class GfAssistantListItemComponent |
|
|
|
|
|
|
|
|
protected readonly clicked = output<void>(); |
|
|
protected readonly clicked = output<void>(); |
|
|
|
|
|
|
|
|
public constructor(private changeDetectorRef: ChangeDetectorRef) {} |
|
|
private readonly changeDetectorRef = inject(ChangeDetectorRef); |
|
|
|
|
|
|
|
|
@HostBinding('class.has-focus') |
|
|
@HostBinding('class.has-focus') |
|
|
public get getHasFocus() { |
|
|
public get getHasFocus() { |
|
|
|