Updates to fixed processed_obj. Fixed other things with find and replace and regular expressions.

This commit is contained in:
Scott Idem
2025-11-13 20:29:30 -05:00
parent 3104304fdb
commit e19b448238
16 changed files with 47 additions and 47 deletions

View File

@@ -704,8 +704,8 @@ async function _process_generic_props<T extends Record<string, any>>({
const updated = processed_obj.updated_on ?? processed_obj.created_on;
const name = processed_obj.name ?? '';
processed_obj.tmp_sort_1 = `${group}_${priority}_${sort}_${updated}`;
processed_obj.tmp_sort_2 = `${group}_${priority}_${sort}_${name}_${updated}`;
(processed_obj as any).tmp_sort_1 = `${group}_${priority}_${sort}_${updated}`;
(processed_obj as any).tmp_sort_2 = `${group}_${priority}_${sort}_${name}_${updated}`;
// --- Specific Transformations ---
if (specific_processor) {