Commits
Giuseppe Digilio authored ff6f6fea334
45 45 | (blur)="onBlur($event)" |
46 46 | (focus)="onFocus($event)" |
47 47 | (change)="onChange($event)" |
48 48 | (input)="onInput($event)" |
49 49 | (selectItem)="onSelectItem($event)"> |
50 50 | |
51 51 | <div class="invalid-feedback" *ngIf="searchFailed">Sorry, suggestions could not be loaded.</div> |
52 52 | </div> |
53 53 | |
54 54 | <div *ngIf="(isHierarchicalVocabulary() | async)" class="position-relative right-addon"> |
55 - | <i ngbDropdownToggle class="position-absolute tree-toggle" |
55 + | <i class="dropdown-toggle position-absolute tree-toggle" (click)="openTree($event)" |
56 56 | aria-hidden="true"></i> |
57 57 | <input class="form-control" |
58 58 | [attr.aria-labelledby]="'label_' + model.id" |
59 59 | [attr.autoComplete]="model.autoComplete" |
60 60 | [class.is-invalid]="showErrorMessages" |
61 61 | [class.tree-input]="!model.readOnly" |
62 62 | [id]="id" |
63 63 | [name]="model.name" |
64 64 | [placeholder]="model.placeholder" |
65 65 | [readonly]="true" |