ywana-core8 0.0.823 → 0.0.824
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.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +7 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +7 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/CollectionPage.js +5 -1
package/dist/index.modern.js
CHANGED
@@ -7464,8 +7464,13 @@ var CollectionContext$1 = function CollectionContext(url, field, host, page, fet
|
|
7464
7464
|
|
7465
7465
|
var _temp12 = _catch$4(function () {
|
7466
7466
|
if (versioning) form.version = 1;
|
7467
|
-
return Promise.resolve(API.create(form)).then(function () {
|
7468
|
-
return Promise.resolve(_this8.load()).then(function () {
|
7467
|
+
return Promise.resolve(API.create(form)).then(function (response) {
|
7468
|
+
return Promise.resolve(_this8.load()).then(function () {
|
7469
|
+
if (response) {
|
7470
|
+
var id = response.id;
|
7471
|
+
if (id) _this8.select(id);
|
7472
|
+
}
|
7473
|
+
});
|
7469
7474
|
});
|
7470
7475
|
}, function (error) {
|
7471
7476
|
console.log(error);
|