@xuda.io/runtime-bundle 1.0.1261 → 1.0.1263
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.
|
@@ -34065,14 +34065,14 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
34065
34065
|
} else {
|
|
34066
34066
|
// Both or neither include a search string, maintain original relative order or use another sorting criteria
|
|
34067
34067
|
// For example, you could sort alphabetically here:
|
|
34068
|
-
return a.localeCompare(b);
|
|
34068
|
+
return -1; //a.localeCompare(b);
|
|
34069
34069
|
}
|
|
34070
34070
|
});
|
|
34071
34071
|
}
|
|
34072
34072
|
|
|
34073
34073
|
const sortedAttrs = sortArrayByIncludedStrings(Object.entries(nodeP.attributes), ['xu-exp:xu-render', 'xu-render', 'xu-exp:program', 'program']);
|
|
34074
34074
|
|
|
34075
|
-
for await (const [key, val] of
|
|
34075
|
+
for await (const [key, val] of Object.entries(nodeP.attributes)) {
|
|
34076
34076
|
if (_ret.abort || $container?.data()?.xuData?.pending_to_delete) break;
|
|
34077
34077
|
if (glb.html5_events_handler.includes(key) || execute_attributes.includes(key)) {
|
|
34078
34078
|
continue;
|