mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
#4204 Ladekreis in Kundensuche Suchfeld verschwindet nicht
This commit is contained in:
@@ -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)));
|
||||
|
||||
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user