Production release May 2024 [EXPLORE] #40
|
@ -58,15 +58,22 @@ export class AdvancedSearchInputComponent implements AfterContentInit, OnDestroy
|
|||
}
|
||||
|
||||
ngAfterContentInit() {
|
||||
this.inputs.forEach(input => {
|
||||
input.inputClass = 'advanced-search';
|
||||
input.selectArrow = null;
|
||||
this.init();
|
||||
this.inputs.changes.subscribe(input => {
|
||||
this.init();
|
||||
});
|
||||
}
|
||||
|
||||
ngOnDestroy() {
|
||||
}
|
||||
|
||||
init() {
|
||||
this.inputs.forEach(input => {
|
||||
input.inputClass = 'advanced-search';
|
||||
input.selectArrow = null;
|
||||
});
|
||||
}
|
||||
|
||||
focusNext(input: InputComponent | EntitiesSelectionComponent, event: any = null) {
|
||||
if(!event || !event.init) {
|
||||
setTimeout(() => {
|
||||
|
|
Loading…
Reference in New Issue