Problem
When using community search component, results dialog is not shown after one enter three letters.
Documentation claims that there is default value 3 for autocompleteFrom.
Looking at the code:
|
autocompleteFrom = input<number | undefined>(); |
Seems it is not applied like other bound values with default value.
Solution
one should always bind autocompleteFrom: [autocompleteFrom]="3"
Problem
When using community search component, results dialog is not shown after one enter three letters.
Documentation claims that there is default value 3 for autocompleteFrom.
Looking at the code:
angular/community/components/form/search/search.component.ts
Line 95 in 3b0748e
Seems it is not applied like other bound values with default value.
Solution
one should always bind autocompleteFrom: [autocompleteFrom]="3"