We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Write other if any:
When building my app with the generated code, and using the newer react: "rxjs": "5.0.0-rc.5",
"rxjs": "5.0.0-rc.5",
there is a build error: [default] /src/app/shared/datasdk/services/core/error.service.ts:12:39
[default] /src/app/shared/datasdk/services/core/error.service.ts:12:39
which can be corrected by giving the ErrorObservable return value a type, cum sa:
@Injectable() export class ErrorHandler { public handleError(error: Response): ErrorObservable<string> { return Observable.throw(error.json().error || 'Server error'); } }
The text was updated successfully, but these errors were encountered:
Hey @redaikidoka thanks for reporting I will add a fix for this ASAP.
Cheers Jon
Sorry, something went wrong.
Release 2.1.0-rc.3 🚀
de4c16a
- Milestone Details: https://github.com/mean-expert-official/loopback-sdk-builder/milestone/25 - Fix: #243 - Fix: #249 - Fix: #250 - Fix: #240 - Fix: #237 - Fix: #246
bda7c9d
jonathan-casarrubias
Successfully merging a pull request may close this issue.
What type of issue are you creating?
What version of this module are you using?
Write other if any:
Please add a description for your issue:
When building my app with the generated code, and using the newer react:
"rxjs": "5.0.0-rc.5",
there is a build error:
[default] /src/app/shared/datasdk/services/core/error.service.ts:12:39
which can be corrected by giving the ErrorObservable return value a type, cum sa:
@Injectable() export class ErrorHandler { public handleError(error: Response): ErrorObservable<string> { return Observable.throw(error.json().error || 'Server error'); } }
The text was updated successfully, but these errors were encountered: