I have a question regarding observables and its subscription. Would an observable subscription destroy itself when navigating away from the page where the subscription is initiated?
Also, if resolvers are returning data from an observable, would I need to unsubscribe from that observable? I use the resolver data through the following syntax
this.resolverData = this.activatedRoute.snapshot.data['resolver1'];