We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 607c016 commit 369ee93Copy full SHA for 369ee93
.changeset/green-planets-act.md
@@ -0,0 +1,5 @@
1
+---
2
+"@alauda/ui": patch
3
4
+
5
+fix: autocomplete circle dependencies
src/autocomplete/suggestion/suggestion.component.ts
@@ -4,9 +4,11 @@ import {
ChangeDetectorRef,
Component,
6
ElementRef,
7
+ Inject,
8
Input,
9
ViewChild,
10
ViewEncapsulation,
11
+ forwardRef,
12
} from '@angular/core';
13
import {
14
BehaviorSubject,
@@ -62,6 +64,7 @@ export class SuggestionComponent {
62
64
63
65
constructor(
66
private readonly cdr: ChangeDetectorRef,
67
+ @Inject(forwardRef(() => AutocompleteComponent))
68
private readonly autocomplete: AutocompleteComponent,
69
) {
70
this.selected$ = combineLatest([
0 commit comments