Alex
Alex
+1 to previous comments. This part of code doesn't allow to catch errors raised in onSubmit handler using `window.onunhandledrejection`. @jaredpalmer, please, take a look
@jesperborgstrup Thank you, that solution helped me a lot! Totally agree that catch should be removed. Preventing the error from being thrown doesn't adds any value, but doesn't allow to...
### Possible solution In current webix styles there is line like: ``` .webix_excel_filter + .webix_ss_sort_asc, .webix_excel_filter + .webix_ss_sort_desc { right: 24px; } ``` Just replace "+" to "~" to make...
It will not work just to delete this lines, because `setIn` function is used to change `formik.errors` and `formik.touched` states (beside `formik.values` state), and it is required to actually remove...
I agree with all points, and totally agree that current necessity to provide action type together with action creator (in default setup without help of other action creator libraries) looks...
@klis87 I read your previous answers, and there is something to think about, so I will answer later (hope I will not forget about them). But according to this answer:...
Mmm, if I understand right: to simplify library code it will be good to choose some one type of actions (FSA or non-FSA) to use inside this library. ### In...
> ... I am pretty sure that the next major version will support request actions only created from Redux action creator lib, be it `redux-act` or built-in `createQuery`. This is...
### Solution if you are using React v17 with Yarn and/or npm 18.3.0+ For those who are using Yarn, as suggested by @ajnozari add the following to your package.json: ```...
@klis87 I spent several hours yesterday to investigate this task. You are absolutely right, such small improvement brings a lot of headache and very controversial decisions. Therefore, I implemented this...