Nigel Rowe

Results 2 comments of Nigel Rowe

In my cases I'm using validateAll and so as a workaround I extended the Form component and override the _validateAll function import R from 'ramda' _validateAll(context) { R.forEach(x => super._setError(x,false),...

I found the errors could be seen via including the new onSuccess and onError callbacks and sending the output to the console ``` new FlowStatusWebpackPlugin({ onError: function(stdout) { console.log(stdout) },...