Mark Fulton
Mark Fulton
I'm not sure how to deal with the various names this could be under (`outdent` is more recently updated but `dedent` has more weekly npm downloads, etc. while a better...
RJSF supports [`addable`](https://github.com/mozilla-services/react-jsonschema-form#addable-option) and [`removable`](https://github.com/mozilla-services/react-jsonschema-form#removable-option) options but does not currently support hiding the remove buttons when `minItems` is met. I propose the following option (or similarly named one) be added:...
I have defined a custom `SchemaField` to wrap `` for properties of type 'object' within `` tags with accompanied by a `` tag. e.g.: ```jsx const DetailsSchemaField = function (props)...
In addition to validating values I want to identify and redact, remove, or otherwise scrub personally identifiable information (PII) from objects when logging. I can create my own object hierarchy...
I want to be able to validate that a value is one of several specific values and then get a union type returned e.g. ```ts ow.string.oneOf(["on", "off"] as const) ```...
using the example code [here](https://github.com/graphql/graphql-playground/blob/2077b6acad058c8729c73528f6ec2000c64a5b7c/packages/graphql-playground-html/minimal.html) I am no longer seeing a list show up when I have multiple queries defined in a single tab and I click the big "play"...
Some time ago I noticed that Alt+Click on a "Viewed" checkbox while reviewing files on a PR stopped toggling all files as viewed/not-viewed. Was this intentional or a regression? I...
Discovered while answering [multipart - Use FormData in an HTTP Response in Deno/Oak - Stack Overflow](https://stackoverflow.com/questions/69032445/use-formdata-in-an-http-response-in-deno-oak): It appears Oak's [automatic response body handling](https://github.com/oakserver/oak#automatic-response-body-handling) does not correctly handle `FormData` like I...
There are various ways to implement. Personally I believe I prefer to be able to execute `group` and `test` blocks myself using my own `ExecutorService`, etc. but that doesn't work...
Sometimes I need to do something conditionally in after some test on whether it passed (nothing thrown), failed (`AssertionError` thrown), or erred (`Throwable` other than `AssertionError` thrown). I can't find...