@xuda.io/runtime-bundle 1.0.887 → 1.0.889

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.
@@ -31116,7 +31116,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31116
31116
  .filter(function () {
31117
31117
  // // look if the changed field include in the calling in parameters
31118
31118
  const elm_data = $(this).data();
31119
- const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : '';
31119
+ const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : undefined;
31120
31120
  let attr = [];
31121
31121
 
31122
31122
  $.each(elm_data?.xuAttributes, function (key, val) {
@@ -39063,7 +39063,7 @@ func.index.new_webworker = async function (SESSION_ID, prog_obj, obj) {
39063
39063
  const content = `importScripts( "${url}" );`;
39064
39064
  return URL.createObjectURL(new Blob([content], { type: 'text/javascript' }));
39065
39065
  }
39066
- const _session = SESSION[SESSION_ID];
39066
+ const _session = SESSION_OBJ[SESSION_ID];
39067
39067
  let blob = getWorkerURL(func.common.get_url(SESSION_ID, 'dist', func.utils.get_resource_filename(['live_preview', 'cms'].includes(_session.engine_mode) ? '' : _session?.opt?.app_build_id, 'runtime/js/xuda_worker.js')));
39068
39068
  WEB_WORKER[SESSION_ID][worker_id] = {
39069
39069
  worker: new Worker(blob, {