@xuda.io/runtime-bundle 1.0.1024 → 1.0.1025
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
|
@@ -14768,8 +14768,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14768
14768
|
if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
|
|
14769
14769
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
14770
14770
|
}
|
|
14771
|
-
|
|
14772
|
-
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = $div;
|
|
14771
|
+
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
14772
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = $div.clone(true);
|
|
14773
14773
|
return $div;
|
|
14774
14774
|
} else {
|
|
14775
14775
|
$container.append(temp_$container.children());
|
|
@@ -12493,8 +12493,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12493
12493
|
if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
|
|
12494
12494
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
12495
12495
|
}
|
|
12496
|
-
|
|
12497
|
-
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = $div;
|
|
12496
|
+
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
12497
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = $div.clone(true);
|
|
12498
12498
|
return $div;
|
|
12499
12499
|
} else {
|
|
12500
12500
|
$container.append(temp_$container.children());
|