@xuda.io/runtime-bundle 1.0.329 → 1.0.330
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 +4 -3
- 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 +4 -3
- package/js/xuda-runtime-slim.min.es.js +4 -3
- 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
|
@@ -25552,7 +25552,7 @@ func.utils.job_worker = function (session_id) {
|
|
|
25552
25552
|
// }
|
|
25553
25553
|
unlock();
|
|
25554
25554
|
if (_session.WORKER_OBJ.jobs.length) {
|
|
25555
|
-
for await (const [key, val] of Object.entries(_session.WORKER_OBJ.jobs
|
|
25555
|
+
for await (const [key, val] of Object.entries(_session.WORKER_OBJ.jobs)) {
|
|
25556
25556
|
if (val.stat) {
|
|
25557
25557
|
break;
|
|
25558
25558
|
}
|
|
@@ -30462,8 +30462,9 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
30462
30462
|
}
|
|
30463
30463
|
///// REFRESH SCREEN
|
|
30464
30464
|
if (!avoid_refresh && fields_changed.length) {
|
|
30465
|
-
await
|
|
30466
|
-
|
|
30465
|
+
// await removed from the below function cause to dead lock Mar 3 25
|
|
30466
|
+
func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_changed);
|
|
30467
|
+
func.UI.screen.refresh_screen(
|
|
30467
30468
|
SESSION_ID,
|
|
30468
30469
|
fields_changed,
|
|
30469
30470
|
null,
|