From ecc042d9b78e797adbb34a274e4adc76f1833c41 Mon Sep 17 00:00:00 2001 From: Valentin Serra Date: Thu, 6 Jun 2024 14:05:16 +0200 Subject: [PATCH] chore: removed deprecated `shouldSort` properties panel attributes Closes #1200 --- .../properties-panel/entries/StaticColumnsSourceEntry.js | 1 - .../properties-panel/entries/StaticOptionsSourceEntry.js | 1 - .../features/properties-panel/groups/CustomPropertiesGroup.js | 1 - 3 files changed, 3 deletions(-) diff --git a/packages/form-js-editor/src/features/properties-panel/entries/StaticColumnsSourceEntry.js b/packages/form-js-editor/src/features/properties-panel/entries/StaticColumnsSourceEntry.js index 8ab8dcaa8..bad1e5593 100644 --- a/packages/form-js-editor/src/features/properties-panel/entries/StaticColumnsSourceEntry.js +++ b/packages/form-js-editor/src/features/properties-panel/entries/StaticColumnsSourceEntry.js @@ -44,6 +44,5 @@ export function StaticColumnsSourceEntry(props) { return { items, add: addEntry, - shouldSort: false, }; } diff --git a/packages/form-js-editor/src/features/properties-panel/entries/StaticOptionsSourceEntry.js b/packages/form-js-editor/src/features/properties-panel/entries/StaticOptionsSourceEntry.js index c3b24c04b..0e28ed90d 100644 --- a/packages/form-js-editor/src/features/properties-panel/entries/StaticOptionsSourceEntry.js +++ b/packages/form-js-editor/src/features/properties-panel/entries/StaticOptionsSourceEntry.js @@ -61,7 +61,6 @@ export function StaticOptionsSourceEntry(props) { return { items, add: addEntry, - shouldSort: false, }; } diff --git a/packages/form-js-editor/src/features/properties-panel/groups/CustomPropertiesGroup.js b/packages/form-js-editor/src/features/properties-panel/groups/CustomPropertiesGroup.js index dfbc9f90d..14225c5c7 100644 --- a/packages/form-js-editor/src/features/properties-panel/groups/CustomPropertiesGroup.js +++ b/packages/form-js-editor/src/features/properties-panel/groups/CustomPropertiesGroup.js @@ -71,7 +71,6 @@ export function CustomPropertiesGroup(field, editField) { label: 'Custom properties', tooltip: 'Add properties directly to the form schema, useful to configure functionality in custom-built task applications and form renderers.', - shouldSort: false, }; }