mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
fe5c4e086a
Previously Elements was assuming that every output was an RxJS `Subject` and supports `.pipe()`. This is not true for `output()`-based outputs which have `.subscribe()` but not `.pipe()`. This commit fixes such outputs by using a `new Observable` instead of `map` to forward outputs. PR Close #57535