@xuda.io/runtime-bundle 1.0.526 → 1.0.528
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.
|
@@ -28175,6 +28175,7 @@ func.UI.worker.find_job_index = function (SESSION_ID, jobNoP) {
|
|
|
28175
28175
|
};
|
|
28176
28176
|
|
|
28177
28177
|
func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0], re_check) {
|
|
28178
|
+
return;
|
|
28178
28179
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
28179
28180
|
|
|
28180
28181
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
@@ -33424,7 +33425,7 @@ func.UI.screen.panel_post_render_handler = async function (
|
|
|
33424
33425
|
} else {
|
|
33425
33426
|
$.each($wrapper.children(), function (key, child) {
|
|
33426
33427
|
$.each($container.children(), function (key, elm) {
|
|
33427
|
-
if ($(elm)
|
|
33428
|
+
if ($(elm)?.data()?.xuData && $(elm)?.data()?.xuData?.elem_key === $(child)?.data()?.xuData?.elem_key) {
|
|
33428
33429
|
$(elm).remove();
|
|
33429
33430
|
}
|
|
33430
33431
|
});
|