@xuda.io/runtime-bundle 1.0.945 → 1.0.946
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-slim.js
CHANGED
|
@@ -11357,7 +11357,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11357
11357
|
const elm_data = $(this).data();
|
|
11358
11358
|
if (!elm_data.xuData) return true;
|
|
11359
11359
|
|
|
11360
|
-
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
11360
|
+
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
11361
11361
|
|
|
11362
11362
|
let attr = [];
|
|
11363
11363
|
|
|
@@ -9084,7 +9084,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9084
9084
|
const elm_data = $(this).data();
|
|
9085
9085
|
if (!elm_data.xuData) return true;
|
|
9086
9086
|
|
|
9087
|
-
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
9087
|
+
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
9088
9088
|
|
|
9089
9089
|
let attr = [];
|
|
9090
9090
|
|