@xuda.io/runtime-bundle 1.0.329 → 1.0.331
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/js/xuda-runtime-bundle.js +34 -8
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-mini-bundle.js +1 -1
- package/js/xuda-runtime-mini-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +34 -8
- package/js/xuda-runtime-slim.min.es.js +34 -8
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +4 -3
- package/js/xuda-worker-bundle.js +4 -3
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -3585,8 +3585,9 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3585
3585
|
}
|
|
3586
3586
|
///// REFRESH SCREEN
|
|
3587
3587
|
if (!avoid_refresh && fields_changed.length) {
|
|
3588
|
-
await
|
|
3589
|
-
|
|
3588
|
+
// await removed from the below function cause to dead lock Mar 3 25
|
|
3589
|
+
func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_changed);
|
|
3590
|
+
func.UI.screen.refresh_screen(
|
|
3590
3591
|
SESSION_ID,
|
|
3591
3592
|
fields_changed,
|
|
3592
3593
|
null,
|
|
@@ -4733,7 +4734,7 @@ func.utils.job_worker = function (session_id) {
|
|
|
4733
4734
|
// }
|
|
4734
4735
|
unlock();
|
|
4735
4736
|
if (_session.WORKER_OBJ.jobs.length) {
|
|
4736
|
-
for await (const [key, val] of Object.entries(_session.WORKER_OBJ.jobs
|
|
4737
|
+
for await (const [key, val] of Object.entries(_session.WORKER_OBJ.jobs)) {
|
|
4737
4738
|
if (val.stat) {
|
|
4738
4739
|
break;
|
|
4739
4740
|
}
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -3585,8 +3585,9 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3585
3585
|
}
|
|
3586
3586
|
///// REFRESH SCREEN
|
|
3587
3587
|
if (!avoid_refresh && fields_changed.length) {
|
|
3588
|
-
await
|
|
3589
|
-
|
|
3588
|
+
// await removed from the below function cause to dead lock Mar 3 25
|
|
3589
|
+
func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_changed);
|
|
3590
|
+
func.UI.screen.refresh_screen(
|
|
3590
3591
|
SESSION_ID,
|
|
3591
3592
|
fields_changed,
|
|
3592
3593
|
null,
|
|
@@ -4733,7 +4734,7 @@ func.utils.job_worker = function (session_id) {
|
|
|
4733
4734
|
// }
|
|
4734
4735
|
unlock();
|
|
4735
4736
|
if (_session.WORKER_OBJ.jobs.length) {
|
|
4736
|
-
for await (const [key, val] of Object.entries(_session.WORKER_OBJ.jobs
|
|
4737
|
+
for await (const [key, val] of Object.entries(_session.WORKER_OBJ.jobs)) {
|
|
4737
4738
|
if (val.stat) {
|
|
4738
4739
|
break;
|
|
4739
4740
|
}
|