fxgit

Results 2 comments of fxgit

``` class NewSimpleReactValidator extends SimpleReactValidator { constructor(options = {}) { super(options); this.helpers.humanizeFieldName = (field) => { // startCase is a Lodash method return _.startCase(field.replace(/([a-z0-9])([A-Z])/g, '$1 $2').replace(/_/g, ' ')); } }...

I have the same problem in a desktop application, there is already some solution?