#4204 Ladekreis in Kundensuche Suchfeld verschwindet nicht

This commit is contained in:
Lorenz Hilpert
2023-07-18 14:09:04 +02:00
parent 78f9093931
commit bc3cedfe50
2 changed files with 1 additions and 2 deletions

View File

@@ -45,7 +45,6 @@ export class CustomerOrderItemListItemComponent implements OnInit, OnDestroy {
}
set orderItem(value: OrderItemDTO) {
console.log('orderItem', value);
this._orderItemSub.next(value);
}
orderId$ = this._activatedRoute.params.pipe(map((params) => Number(params.orderId)));

View File

@@ -295,10 +295,10 @@ export class CustomerSearchStore extends ComponentStore<CustomerSearchState> imp
first()
)
),
withLatestFrom(this.filter$, this.processId$, this.restoreSearchResult()),
tap(() => {
this.patchState({ fetchingCustomerList: true, customerList: [], customerListCount: 0 });
}),
withLatestFrom(this.filter$, this.processId$, this.restoreSearchResult()),
switchMap(([{ ignoreRestore }, filter, processId, restored]) =>
this._customerService
.getCustomersWithQueryToken({