diff --git a/packages/ui/src/ui/store/actions/navigation/modals/attributes-editor.tsx b/packages/ui/src/ui/store/actions/navigation/modals/attributes-editor.tsx index 1f74bde63..d7cc1bbf9 100644 --- a/packages/ui/src/ui/store/actions/navigation/modals/attributes-editor.tsx +++ b/packages/ui/src/ui/store/actions/navigation/modals/attributes-editor.tsx @@ -191,16 +191,13 @@ export function navigationSetNodeAttributes( } const prepareMergeParams = (path: string) => { - const sorted = ypath.getValue(attributesMap[path], '/@sorted'); return { - spec: Object.assign( - { - input_table_paths: [path], - output_table_path: path, - force_transform: true, - }, - sorted ? {mode: 'sorted'} : {}, - ), + spec: Object.assign({ + input_table_paths: [path], + output_table_path: path, + force_transform: true, + mode: 'ordered', + }), ...EDIT_MERGE_MARKER, }; };