loopback-sdk-builder icon indicating copy to clipboard operation
loopback-sdk-builder copied to clipboard

Url Parameters not being passed in correctly

Open jonathanRinciari opened this issue 6 years ago • 0 comments

What type of issue are you creating?

  • [x] Bug
  • [ ] Enhancement
  • [ ] Question

What version of this module are you using?

  • [x] 2.3.1

Write other if any:

Please add a description for your issue:

Url Search Parameters are not being passed in correctly inside of base.service.ts.

search : Object.keys(urlParams).length > 0 ? searchParams.getURLSearchParams() : null

this can be fixed by doing the following

params : Object.keys(urlParams).length > 0 ? urlParams : null

jonathanRinciari avatar Jun 01 '18 16:06 jonathanRinciari