mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-03-31 06:24:07 -04:00
Replaced deprecated RxJS operators
This commit is contained in:
@@ -34,7 +34,6 @@ import {
|
||||
scan,
|
||||
startWith,
|
||||
switchMap,
|
||||
switchMapTo,
|
||||
toArray,
|
||||
zip
|
||||
} from "rxjs"
|
||||
@@ -189,7 +188,7 @@ const manifest$ = merge(
|
||||
)
|
||||
.pipe(
|
||||
startWith("*"),
|
||||
switchMapTo(observable$.pipe(toArray()))
|
||||
switchMap(() => observable$.pipe(toArray()))
|
||||
)
|
||||
))
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user