@xuda.io/runtime-bundle 1.0.423 → 1.0.425
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
|
@@ -8648,10 +8648,9 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8648
8648
|
if (!ignore_disableAutoRefresh && prog_obj.properties.disableAutoRefresh) {
|
|
8649
8649
|
continue;
|
|
8650
8650
|
}
|
|
8651
|
-
|
|
8652
|
-
|
|
8653
|
-
|
|
8654
|
-
panels_obj[$div.attr('xu-ui-id')] = {
|
|
8651
|
+
const xu_ui_id = $div.attr('xu-ui-id');
|
|
8652
|
+
if (!panels_obj[xu_ui_id]) {
|
|
8653
|
+
panels_obj[xu_ui_id] = {
|
|
8655
8654
|
prog_id,
|
|
8656
8655
|
panelXuAttributes,
|
|
8657
8656
|
};
|
|
@@ -11637,7 +11636,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11637
11636
|
};
|
|
11638
11637
|
|
|
11639
11638
|
const $xu_embed_container = $('.xu_embed_container');
|
|
11640
|
-
const panels_obj = func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
11639
|
+
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
11641
11640
|
// let inviable_panels_obj = {};
|
|
11642
11641
|
|
|
11643
11642
|
for await (const field_id of fields_arr) {
|
|
@@ -8649,10 +8649,9 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8649
8649
|
if (!ignore_disableAutoRefresh && prog_obj.properties.disableAutoRefresh) {
|
|
8650
8650
|
continue;
|
|
8651
8651
|
}
|
|
8652
|
-
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
panels_obj[$div.attr('xu-ui-id')] = {
|
|
8652
|
+
const xu_ui_id = $div.attr('xu-ui-id');
|
|
8653
|
+
if (!panels_obj[xu_ui_id]) {
|
|
8654
|
+
panels_obj[xu_ui_id] = {
|
|
8656
8655
|
prog_id,
|
|
8657
8656
|
panelXuAttributes,
|
|
8658
8657
|
};
|
|
@@ -9710,7 +9709,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9710
9709
|
};
|
|
9711
9710
|
|
|
9712
9711
|
const $xu_embed_container = $('.xu_embed_container');
|
|
9713
|
-
const panels_obj = func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
9712
|
+
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
9714
9713
|
// let inviable_panels_obj = {};
|
|
9715
9714
|
|
|
9716
9715
|
for await (const field_id of fields_arr) {
|