Skip to content

Commit 09f1270

Browse files
Dharit Desaidaniloff200
authored andcommitted
fix(typeahead): add variable which was missed in MR #5547
adding variable `list` which was added in host Object as `[attr.aria-autocomplete]: 'list'` but was not defined. Modules/Libraries which uses AoT compilation for their build gets fatal error due to this. this will fix let AoT builds to work properly which was introduced in MR #5547
1 parent 2c6a1f8 commit 09f1270

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/typeahead/typeahead.directive.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ export class TypeaheadDirective implements OnInit, OnDestroy {
151151

152152
activeDescendant: string;
153153
isOpen = false;
154+
list = 'list';
154155
_container: TypeaheadContainerComponent;
155156
isActiveItemChanged = false;
156157
isFocused = false;

0 commit comments

Comments
 (0)