#4264 - Bestellen-Button ausgegraut

This commit is contained in:
Lorenz Hilpert
2023-08-24 11:57:47 +02:00
parent 5c6f416391
commit 483faad86a
2 changed files with 3 additions and 3 deletions

View File

@@ -729,12 +729,12 @@ export class DomainCheckoutService {
if (timestamps?.length > 0) {
const oldestTimestamp = Math.min(...timestamps);
observer.next(exp < oldestTimestamp);
observer.next(exp > oldestTimestamp);
}
timeout = setTimeout(() => {
check.call(this);
}, olaExpiration);
}, olaExpiration / 10);
});
}

View File

@@ -6,7 +6,7 @@ import { DomainCheckoutService } from '@domain/checkout';
import { AvailabilityDTO, DestinationDTO, ShoppingCartItemDTO } from '@swagger/checkout';
import { UiMessageModalComponent, UiModalService } from '@ui/modal';
import { PrintModalData, PrintModalComponent } from '@modal/printer';
import { catchError, debounceTime, delay, first, map, shareReplay, switchMap, take, takeUntil } from 'rxjs/operators';
import { catchError, debounceTime, delay, first, map, shareReplay, switchMap, take, takeUntil, tap } from 'rxjs/operators';
import { Subject, NEVER, combineLatest, BehaviorSubject, interval, of, merge } from 'rxjs';
import { DomainCatalogService } from '@domain/catalog';
import { BreadcrumbService } from '@core/breadcrumb';