refactor: nicht verwendete Filtermethode aus der Receiver-Input-Komponente entfernen

This commit is contained in:
Developer 02 2024-08-22 17:18:17 +02:00
parent cd32ae2a35
commit 72af1cc2a2

View File

@ -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 || '');
}),
);
}
})