Skip to content

Commit 7082b16

Browse files
AlexanderSkrockfake-join[bot]
authored andcommitted
chore: remove unsupported flag shouldSort
1 parent 8a19765 commit 7082b16

File tree

10 files changed

+6
-12
lines changed

10 files changed

+6
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ All notable changes to [bpmn-js-properties-panel](https://github.com/bpmn-io/bpm
66

77
___Note:__ Yet to be released changes appear here._
88

9+
* `FEAT`: drop alphabetic sorting of list entries ([#1047](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/1047))
10+
11+
912
## 5.16.0
1013

1114
* `FEAT`: add hint for the process ID field in the Camunda 7 ([#1038](https://github.com/bpmn-io/bpmn-js-properties-panel/issues/1038))

src/provider/camunda-platform/properties/ErrorsProps.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ export function ErrorsProps({ element, injector }) {
4848

4949
return {
5050
items,
51-
add: addFactory({ bpmnFactory, commandStack, element }),
52-
shouldSort: false
51+
add: addFactory({ bpmnFactory, commandStack, element })
5352
};
5453
}
5554

src/provider/camunda-platform/properties/FormDataProps.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ export function FormDataProps({ element, injector }) {
4545

4646
return {
4747
items,
48-
add: addFactory({ bpmnFactory, commandStack, element }),
49-
shouldSort: false
48+
add: addFactory({ bpmnFactory, commandStack, element })
5049
};
5150
}
5251

src/provider/camunda-platform/properties/InputProps.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export function InputProps(props) {
5353
return {
5454
items,
5555
add,
56-
shouldSort: false
5756
};
5857
}
5958

src/provider/camunda-platform/properties/OutputProps.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ export function OutputProps({ element, injector }) {
4040
return {
4141
items,
4242
add: addFactory({ bpmnFactory, commandStack, element }),
43-
shouldSort: false
4443
};
4544
}
4645

src/provider/camunda-platform/properties/ProcessVariablesProps.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function ProcessVariablesEntry(props) {
8888
};
8989
});
9090

91-
return <ListGroup { ...props } items={ items } shouldSort={ false } />;
91+
return <ListGroup { ...props } items={ items } />;
9292
}
9393

9494
export function ProcessVariablesProps(props) {
@@ -103,7 +103,6 @@ export function ProcessVariablesProps(props) {
103103

104104
return {
105105
component: ProcessVariablesEntry,
106-
shouldSort: false
107106
};
108107
}
109108

src/provider/shared/ExtensionPropertiesProps.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export function ExtensionPropertiesProps({ element, injector, namespace = 'camun
4848
return {
4949
items,
5050
add: addFactory({ bpmnFactory, commandStack, element, namespace }),
51-
shouldSort: false
5251
};
5352
}
5453

src/provider/zeebe/properties/HeaderProps.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ export function HeaderProps({ element, injector }) {
4747
return {
4848
items,
4949
add: addFactory({ bpmnFactory, commandStack, element }),
50-
shouldSort: false
5150
};
5251
}
5352

src/provider/zeebe/properties/InputProps.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export function InputProps({ element, injector }) {
4949
return {
5050
items,
5151
add: addFactory({ element, bpmnFactory, commandStack }),
52-
shouldSort: false
5352
};
5453
}
5554

src/provider/zeebe/properties/OutputProps.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export function OutputProps({ element, injector }) {
4949
return {
5050
items,
5151
add: addFactory({ element, bpmnFactory, commandStack }),
52-
shouldSort: false
5352
};
5453
}
5554

0 commit comments

Comments
 (0)