David Higgins

Results 13 comments of David Higgins

Simple POC project [![Edit react-checkbox-tree example](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/react-checkbox-tree-example-ertfb?fontsize=14&hidenavigation=1&theme=dark) Changing from `1.6.0-alpha.2` to `1.6.0` in the package.json demonstrates the change in behavior

I suggest that allowing a user to check/uncheck an empty node is an acceptable behavior. Consider the case of a file-manager. Being able to 'check' an empty folder would be...

https://github.com/erikras/redux-form-material-ui/issues/208 seems related

I managed to solve this with the following code snippet, which removes the error property (which ultimately ends up causing this `helperText` attribute. It then re-adds the error text into...

This is what I've come up with: ```jsx import { FormHelperText } from "material-ui/Form"; import { InputLabel } from "material-ui/Input"; import { Select } from "redux-form-material-ui"; const renderSelect = ({...

The helper text is being generated whenever an error is passed in. By removing the passed in error prop, the helper text is not auto generated and the issue is...

I had so many issues like this that I ended up not using this library at all (mainly caused by version churn in material-ui@next), instead creating my own version of...

Took me a minute to find `getWorker` function. It's here: `import { initialize, mswLoader, getWorker } from 'msw-storybook-addon';`

https://github.com/erikras/redux-form-material-ui/issues/208 seems related