From 7ed220dc51a21df1bbaca97706ab1ff92a33ce89 Mon Sep 17 00:00:00 2001 From: Aaron Greenspan Date: Tue, 19 Jan 2021 17:28:41 -0700 Subject: [PATCH] ui: switch to concatMap --- ui/src/app/services/startup-alerts.notifier.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/services/startup-alerts.notifier.ts b/ui/src/app/services/startup-alerts.notifier.ts index cc561e03b..1e9d6b509 100644 --- a/ui/src/app/services/startup-alerts.notifier.ts +++ b/ui/src/app/services/startup-alerts.notifier.ts @@ -35,7 +35,7 @@ export class GlobalAlertsNotifier { ), concatMap( () => this.osUpdateAlertNeeded$().pipe( - switchMap(vl => vl ? this.presentUpdateDailogues(vl) : of({ })), + concatMap(vl => vl ? this.presentUpdateDailogues(vl) : of({ })), ), ), ).subscribe()