Drew Tate
Drew Tate
## Background ArcGIS Server tries to validate any token passed in a request whether or not authentication is needed for that request. This can lead to a scenario such as...
## Preface As things stand, calling `enablePostMessageAuth` multiple times simply adds multiple `postMessage` listeners to `window`, but `disablePostMessageAuth` will only remove the latest one. There are various scenarios where you...
Just spent the morning debugging a project and this `UserSession` ended up being the issue. ```js const session = new UserSession({ username: process.env.AGO_USERNAME, password: process.env.AGO_PASSWORD }); ``` Unbeknownst to me,...
The return statement in `isItemSharedWithGroup` is incorrectly nested in an `if` block. This one flies under the radar because `undefined` is falsy, but it's a bug nonetheless. ```js function isItemSharedWithGroup(requestOptions)...
**Describe the issue** Metric visualization sometimes has phantom tiles after data change. You can see a phantom tile squishing the second tile down in this screenshot: **To Reproduce** Visit https://codesandbox.io/s/awesome-goodall-kq1jqo?file=/src/App.tsx...
**Describe the issue** The full-circle gauge chart's `labelMinor` overlaps the chart. **To Reproduce** Visit https://codesandbox.io/s/gracious-dawn-k1k7pu?file=/src/App.tsx **Expected behaviour** The minor label should not overlap with the gauge. **Screenshots** **Version (please complete...
This looks like a sweet library with great potential and I'm excited to follow its development. Thought it was worth mentioning, though, that when I try to run any JSPerf...
## Summary Part of https://github.com/elastic/kibana/issues/135265 Optimizes semantically-duplicate functions of the following types - average - count - last_value - max - median - min - standard_deviation - sum - unique_count...
Debouncing can improve the UX significantly when input events trigger an automatic operation such as an expensive render. This is the case in many places in Kibana. In Lens we...
**Describe the issue** A runtime error thrown from within the chart component tree does not trigger error handling logic in the parent tree. This makes it hard to build reliable...