@saltcorn/server 0.9.4 → 0.9.5-beta.0
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/package.json +8 -8
- package/public/saltcorn.js +1 -9
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saltcorn/server",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.5-beta.0",
|
|
4
4
|
"description": "Server app for Saltcorn, open-source no-code platform",
|
|
5
5
|
"homepage": "https://saltcorn.com",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@aws-sdk/client-s3": "^3.451.0",
|
|
10
|
-
"@saltcorn/base-plugin": "0.9.
|
|
11
|
-
"@saltcorn/builder": "0.9.
|
|
12
|
-
"@saltcorn/data": "0.9.
|
|
13
|
-
"@saltcorn/admin-models": "0.9.
|
|
14
|
-
"@saltcorn/filemanager": "0.9.
|
|
15
|
-
"@saltcorn/markup": "0.9.
|
|
16
|
-
"@saltcorn/sbadmin2": "0.9.
|
|
10
|
+
"@saltcorn/base-plugin": "0.9.5-beta.0",
|
|
11
|
+
"@saltcorn/builder": "0.9.5-beta.0",
|
|
12
|
+
"@saltcorn/data": "0.9.5-beta.0",
|
|
13
|
+
"@saltcorn/admin-models": "0.9.5-beta.0",
|
|
14
|
+
"@saltcorn/filemanager": "0.9.5-beta.0",
|
|
15
|
+
"@saltcorn/markup": "0.9.5-beta.0",
|
|
16
|
+
"@saltcorn/sbadmin2": "0.9.5-beta.0",
|
|
17
17
|
"@socket.io/cluster-adapter": "^0.2.1",
|
|
18
18
|
"@socket.io/sticky": "^1.0.1",
|
|
19
19
|
"adm-zip": "0.5.10",
|
package/public/saltcorn.js
CHANGED
|
@@ -472,15 +472,7 @@ function saveAndContinue(e, k) {
|
|
|
472
472
|
`<input type="hidden" class="form-control " name="id" value="${res.id}">`
|
|
473
473
|
);
|
|
474
474
|
}
|
|
475
|
-
|
|
476
|
-
notifyAlert(res.notify);
|
|
477
|
-
}
|
|
478
|
-
if (res.notify_success) {
|
|
479
|
-
notifyAlert({ type: "success", text: res.notify });
|
|
480
|
-
}
|
|
481
|
-
if (res.reload_page) {
|
|
482
|
-
location.reload(); //TODO notify to cookie if reload or goto
|
|
483
|
-
}
|
|
475
|
+
common_done(res, form.attr("data-viewname"));
|
|
484
476
|
},
|
|
485
477
|
error: function (request) {
|
|
486
478
|
var ct = request.getResponseHeader("content-type") || "";
|