eservices-core 1.0.513 → 1.0.514
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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.514
|
|
3
3
|
* (c) 2023 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -5249,7 +5249,7 @@ function useFormAction(form, options) {
|
|
|
5249
5249
|
const fn = () => Promise.resolve()
|
|
5250
5250
|
.then(() => {
|
|
5251
5251
|
if (form.changed)
|
|
5252
|
-
form.save();
|
|
5252
|
+
return form.save();
|
|
5253
5253
|
return;
|
|
5254
5254
|
})
|
|
5255
5255
|
.then(() => fetch(action.url, {
|