-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
5.5.3 EmptyError: no elements in sequence #3151
Comments
After an update of my angular project I get the same error. In my case, routing with children and outlets doesn't work. |
Experiencing the same thing. Had to fix rxjs version in package.json to prevent CI from installing version 5.5.3: |
HI, I've the same error. |
Me too with an Angular 5.0.5 project. After downgrading rxjs to 5.5.2 the problem went away. |
See Angular issue #20752 for a minimal reproduction of the problem. |
@Cito that solved! |
FYI: In react project, v5.5.3 upgrade also breaking app. In this case |
I'll try to look into this shortly. |
|
This is breaking prettier/prettier-eslint-cli as we're doing Update: Edit: I've must have put this in the wrong issue 😕 |
We have added quick fix for this and patch will be released soon. |
I got the error also with 5.5.3 , does it already work ? |
This can help (using rxjs 5.5.3 - "rxjs": "^5.5.2") Bug with empty path: const routes: Routes = [ Ok when using pathMatch: 'full': const routes: Routes = [ From angular/angular-cli#8724 (nawnitraman) |
Is this a temporary solution or a standard solution? Are you going to release a bug fix? |
Fixed this issue in my setup by changing rxjs from ^5.4.2 to 5.5.2. |
To make tests work until the fix for ReactiveX/rxjs#3151 is released.
To make tests work until the fix for ReactiveX/rxjs#3151 is released.
quick fix tested in 2 projects - in package.json replace "rxjs": "^5.5.2" or "rxjs": "^5.5.3" with "rxjs": "5.5.2" |
ERROR Error: Uncaught (in promise): EmptyError: no elements in sequence I want solve this problem with RxJS5.5.3 only, is there any solution for that? |
I am getting the same error when I press an anchor element, and the anchor element is using |
I have had the same problem. It was because I was using a modal from ng2-bootstrap-modal.
|
Please try |
5.5.4 works |
I'm still getting the same issue. I downgraded to 5.5.2 and also tried 5.5.4...both are not working for me. |
update to 5.5.5 is ok. |
Tried 5.5.5 as you suggested- still getting the same error... |
@mmanavaz make sure to remove your node_modules and reinstall the dependencies after you changed the versions. If that does not help, try clearing your npm cache. |
I was able to get it working, thank you @beeman |
I just resolved it by removing its cap (^) from "rxjs": "^5.5.2", to "rxjs": "5.5.2", |
I got this error in an angular app, and wanted to explain how I fixed it, in-case anyone runes into it in the future, as it doesn't seem like the most common error, and the error displayed in the console isn't very helpful at all.
I guess "caching" whatever the |
I am still having this issue - on "version": "5.5.6" of rxjs and Angular 5.2.10. I have also tried the pathMatch: 'full' as well and it still does not work... |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
RxJS version:
5.5.3
Code to reproduce:
since my update to 5.5.3 i'm getting errors in otherwise perfectly fine running angular 5.x application
this is the error i'm getting this morning
all was working perfectly prior to 5.5.3
difficult for me to trap what the reason could be thanks
The text was updated successfully, but these errors were encountered: