@xuda.io/runtime-bundle 1.0.766 → 1.0.768
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-bundle.js +3 -3
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +3 -3
- package/js/xuda-runtime-slim.min.es.js +3 -3
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +2 -2
- package/js/xuda-worker-bundle.js +2 -2
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -30053,11 +30053,11 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
30053
30053
|
}
|
|
30054
30054
|
///// REFRESH SCREEN
|
|
30055
30055
|
if (!avoid_refresh && fields_changed.length) {
|
|
30056
|
-
await func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_changed);
|
|
30056
|
+
await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed));
|
|
30057
30057
|
// await removed from the below function cause to dead lock Mar 3 25
|
|
30058
30058
|
await func.UI.screen.refresh_screen(
|
|
30059
30059
|
SESSION_ID,
|
|
30060
|
-
fields_changed,
|
|
30060
|
+
_.cloneDeep(fields_changed),
|
|
30061
30061
|
null,
|
|
30062
30062
|
datasource_changed[0], // refresh the current datasource only
|
|
30063
30063
|
);
|
|
@@ -32291,7 +32291,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32291
32291
|
},
|
|
32292
32292
|
},
|
|
32293
32293
|
};
|
|
32294
|
-
await func.datasource.update(SESSION_ID, datasource_changes, null, true);
|
|
32294
|
+
await func.datasource.update(SESSION_ID, datasource_changes, null, ['radio', 'checkbox'].includes(input_field_type) ? true : false);
|
|
32295
32295
|
}
|
|
32296
32296
|
}
|
|
32297
32297
|
}
|