Michael Klein

Results 25 comments of Michael Klein

+1 same issue here. Actually I'm surprised this issue didn't crop up on GitHub sooner.

This seems like a simple patch that would be very useful. Can we get this accepted?

I also have this problem - relations only work for simple values, not if one of the values in a multiple-select matches. And unfortunately it doesn't really help to try...

As a workaround you can create your own TranslateLoader that loads and combines various sources for you. See the [http-loader](https://github.com/ngx-translate/http-loader/blob/master/projects/ngx-translate/http-loader/src/lib/http-loader.ts) for an example, the interface is super-simple to implement.

Second this. In our case we have an authentication guard that saves the requested URL, and after login we attempt to dispatch an action that redirects to that URL. Problem...

As referenced, I've submitted a pull request that adds this feature. :)

~~@richarddavenport what do you mean, 4.x of what? Angular? I googled for ngrx 4.x and couldn't find a thing.~~ ~~If Angular 4.x, what difference does it make? We are using...

One thing still mystifies me: How can I do a navigation as part of an effect? Seems to me this is not possible anymore, without doing a `switchMap` and returning...

@richarddavenport afaik you can't return a `Promise` (the return type from `this.router.navigate(['blah'])`) or even a void (if you used closure syntax and didn't return anything), because it's expecting you to...

Aha totally awesome, thx for the tip @richarddavenport! Very, very handy! And if you did the same thing with ngrx v3, you would create an endless loop! 😄