@xuda.io/runtime-bundle 1.0.345 → 1.0.347

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.
@@ -31708,8 +31708,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31708
31708
 
31709
31709
  if (!elem_val?.$elm?.data()?.xuData?.ui_type) continue;
31710
31710
 
31711
- // already rended
31712
- if (elem_val.$elm[0].tagName !== 'XURENDER' && elem_val?.$elm?.length) continue;
31711
+ // // already rended
31712
+ // if (elem_val.$elm[0].tagName !== 'XURENDER' && elem_val?.$elm?.length) continue;
31713
31713
 
31714
31714
  new_job = await func.UI.worker.add_to_queue(
31715
31715
  SESSION_ID,
@@ -32421,6 +32421,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32421
32421
 
32422
32422
  const post_render = async function () {
32423
32423
  if (value) {
32424
+ // abort if already rended
32425
+ if ($elm[0].tagName !== 'XURENDER' && $elm?.length) {
32426
+ return func.events.delete_job(SESSION_ID, jobNoP);
32427
+ }
32428
+
32424
32429
  let original_data_obj = $elm.data().xuData.original_data_obj;
32425
32430
 
32426
32431
  if (!original_data_obj) {