Luke Secomb
Results
42
comments of
Luke Secomb
Would be a handy feature to "bulkify" the intervals config. Looks like there might be a bit of work involved as the schema currently only supports a `start`/`end` time, and...
fix(FieldApi): onChangeListenTo should not block onChangeAsync validator on field it is listening to
Running into similar issues with inter-dependant fields. ```ts new FieldApi({ name: 'field_1', validators: { onChangeListenTo: ['field_2', 'field_3'], onChangeAsync: async (props) => { // magical async stuff } }, }) new...