AnsonT
AnsonT
When running in iPhone XR, starting a preview with the front camera takes many seconds to appear. The same code runs fine on an iPhone X. It appears that the...
It'll be useful to support value editors if we can render the template value as a react component if it's a function instead of text.
Added support to access nested properties in the external data ```javascript eq(42, compileExpression('a')(Object.create({a: 42}))); eq(42, compileExpression('a.b')(Object.create({a: { b: 42}}))); eq(42, compileExpression('a["b"]')(Object.create({a: { b: 42 }}))); eq(42, compileExpression("a['b']")(Object.create({a: { b: 42...
**Describe the bug** If a file or path in KUBECONFIG env var is missing or kubeconfig file is blank, kdash exits with a crash report. It would be better if...
**Describe the bug** If the user of the active context does not have permission to enumerate other namespaces, etc., errors will be shown and no pods are listed in the...
Match request logger functionality in Koa and Hapi for express
const nestedRouter = new Router() nestedRouter.get("/hello", ....) const app = express() app.use(expressMetrics({ port: 8091 })) app.use("/api", nestedRouter) /hello is captured, but not /api/hello, potentially conflating metrics from different endpoints.
Responses with JSON payloads should have header Content-Type specified to "application/json"
After a service is wrapped with TransactionFor. @InjectDataSource can no longer resolve, giving error: "message": "Cannot read properties of undefined (reading 'name')"
### Please read and mark the following check list before creating a pull request: - [X] I read and followed the [CONTRIBUTING.md](https://github.com/akveo/react-native-ui-kitten/blob/master/CONTRIBUTING.md) guide. - [X] I read and followed the...