@xuda.io/runtime-bundle 1.0.771 → 1.0.773
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 +3 -1
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +3 -1
- package/js/xuda-runtime-slim.min.es.js +3 -1
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -1
- package/js/xuda-worker-bundle.js +1 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -4157,7 +4157,7 @@ func.datasource.run_events_functions = async function (SESSION_ID, dataSourceSes
|
|
|
4157
4157
|
clearInterval(interval);
|
|
4158
4158
|
resolve(job_num);
|
|
4159
4159
|
}
|
|
4160
|
-
if (i >
|
|
4160
|
+
if (i > 200) {
|
|
4161
4161
|
console.error('deadlock detected');
|
|
4162
4162
|
clearInterval(interval);
|
|
4163
4163
|
resolve(job_num);
|
|
@@ -12427,6 +12427,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12427
12427
|
|
|
12428
12428
|
const common_fx = {
|
|
12429
12429
|
'xu-ref': async function ($elm, val, dsSession) {
|
|
12430
|
+
if (!val.value) return {};
|
|
12431
|
+
|
|
12430
12432
|
func.UI.update_xu_ref(SESSION_ID, dsSession || paramsP.dsSessionP, val.value, $elm);
|
|
12431
12433
|
|
|
12432
12434
|
// Select the node that will be observed for mutations
|
|
@@ -4158,7 +4158,7 @@ func.datasource.run_events_functions = async function (SESSION_ID, dataSourceSes
|
|
|
4158
4158
|
clearInterval(interval);
|
|
4159
4159
|
resolve(job_num);
|
|
4160
4160
|
}
|
|
4161
|
-
if (i >
|
|
4161
|
+
if (i > 200) {
|
|
4162
4162
|
console.error('deadlock detected');
|
|
4163
4163
|
clearInterval(interval);
|
|
4164
4164
|
resolve(job_num);
|
|
@@ -10137,6 +10137,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10137
10137
|
|
|
10138
10138
|
const common_fx = {
|
|
10139
10139
|
'xu-ref': async function ($elm, val, dsSession) {
|
|
10140
|
+
if (!val.value) return {};
|
|
10141
|
+
|
|
10140
10142
|
func.UI.update_xu_ref(SESSION_ID, dsSession || paramsP.dsSessionP, val.value, $elm);
|
|
10141
10143
|
|
|
10142
10144
|
// Select the node that will be observed for mutations
|