RoXoM

Results 52 comments of RoXoM

@yousoph The wrong test case is `lng,lat` column, ie `-122.428577,37.7806267`. And ![image](https://github.com/apache/superset/assets/17971352/1d215ea7-1ea4-424c-b98c-345fb9635d75)

https://github.com/geopy/geopy/discussions/565

> As a workaround you can set the `docs.source.type` story parameter to `"code"`. It is not friendly for using template mode. The code will be displayed as ``` (args) =>...

Someone is trying to fix it... https://github.com/algolia/react-element-to-jsx-string/pull/515

it will resolve by https://github.com/algolia/react-element-to-jsx-string/pull/617.

For `@storybook/addon-docs`, i think react-element to source code is not correct way. It will make more complex when use Lazy component.

It is my solution. This can still be improved. ``` if (URL) { Object.defineProperty(URL.prototype, 'searchParams', { get (context) { const searchParams = new URLSearchParams(this.search) searchParams.set = (key, value) => {...

@jerrybendy I found that `core-js` already supports `URL` and `URLSearchParmas` compatibility. see: https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/web.url.js https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/web.url-search-params.js We can use it in the browser. And learn from its implementation