refactor: nicht verwendete Filtermethode aus der Receiver-Input-Komponente entfernen
This commit is contained in:
parent
cd32ae2a35
commit
72af1cc2a2
@ -35,7 +35,10 @@ export class ReceiverInputComponent implements OnInit {
|
||||
|
||||
this.filteredOptions = this.control.valueChanges.pipe(
|
||||
startWith(''),
|
||||
map(value => this._filter(value || '')),
|
||||
map(value => {
|
||||
console.log(value);
|
||||
return this._filter(value || '');
|
||||
}),
|
||||
);
|
||||
}
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user