@bigbinary/neetoui 5.2.1 → 5.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/formik.cjs.js +4 -1
- package/formik.cjs.js.map +1 -1
- package/formik.js +4 -1
- package/formik.js.map +1 -1
- package/index.css +1 -1
- package/package.json +1 -1
package/formik.js
CHANGED
|
@@ -14136,7 +14136,10 @@ var ActionBlock = function ActionBlock(_ref) {
|
|
|
14136
14136
|
disabled: isSubmitting || equals(values, initialValues),
|
|
14137
14137
|
label: "Cancel",
|
|
14138
14138
|
style: "text",
|
|
14139
|
-
onClick: handleReset
|
|
14139
|
+
onClick: handleReset,
|
|
14140
|
+
onMouseDown: function onMouseDown(e) {
|
|
14141
|
+
return e.preventDefault();
|
|
14142
|
+
}
|
|
14140
14143
|
}, cancelButtonProps)));
|
|
14141
14144
|
};
|
|
14142
14145
|
|