Paulius Varna
Paulius Varna
**Describe the bug** Redirect converts POST request to a GET request without body **To Reproduce** Steps to reproduce the behavior: 1. Create a POST function i.e. `/.netlify/functions/create-ticket` 2. Redirect `/create-ticket`...
Would be cool to be able to use Fetch API as request library. It might even be a good default as native default (in browser env).
MDN example of `fetch()` with `FormData`: ```js const formData = new FormData(); const fileField = document.querySelector('input[type="file"]'); formData.append('username', 'abc123'); formData.append('avatar', fileField.files[0]); fetch('https://example.com/profile/avatar', { method: 'PUT', body: formData }) .then(response => response.json())...
Hi, I use `createPages` to generate all the pages. I get a list of `locales` via API, and start generating pages per each locale. Can I dynamically load intl locales...
#### Describe the bug Seems like `SplitPolygonMode` doesn't work in ESM Rollup project. Might be a problem from Turf: https://github.com/Turfjs/turf/issues/2191 #### Actual Result After putting down last point, receive error...
#### Describe the bug `SnappableMode` doesn't seem to combine well with `ModifyMode`. #### Actual Result 1. Errors: `Cannot read properties of undefined (reading 'getGuides')` 2. Points snap to `!selectedFeatureIndexes` Feature...
#### Feature request Hi, I want to control the cursor style, but the API _seems_ to be not exposed? `getCursor` seems to be hardcoded into the layers. Docs are not...
Hi, I just installed latest version of `vue-i18next`, but it seems that you got some version mismatches? I can see that `@panter/vue-i18next/typings/index.d.ts` and `i18next` have different names for some functions....
Keybindings for Controls don't trigger anything. Doesn't matter if you use default `true` or manual `keybindings: true` option. I don't even need to make a reproduction, because official example (https://docs.mapbox.com/mapbox-gl-js/example/mapbox-gl-draw/)...
## Feature suggestion - adding srcSet prop. ``` vue ``` ### Current behavior: After clicking on image, preview is default image, which doesn't care about screen size.