Skip to content

Commit 4a3d599

Browse files
committed
deps: update to [email protected]
1 parent f5efe32 commit 4a3d599

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"license": "MIT",
5151
"dependencies": {
5252
"@bpmn-io/extract-process-variables": "^0.8.0",
53-
"array-move": "^3.0.1",
53+
"array-move": "^4.0.0",
5454
"ids": "^1.0.5",
5555
"min-dash": "^4.1.1",
5656
"min-dom": "^4.1.0"

src/provider/camunda-platform/CamundaPlatformPropertiesProvider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Group, ListGroup } from '@bpmn-io/properties-panel';
22

33
import { findIndex } from 'min-dash';
44

5-
import { mutate as arrayMove } from 'array-move';
5+
import { arrayMoveMutable } from 'array-move';
66

77
import {
88
AsynchronousContinuationsProps,
@@ -736,5 +736,5 @@ function moveGroup(groups, id, position) {
736736
return;
737737
}
738738

739-
return arrayMove(groups, groupIndex, position);
739+
return arrayMoveMutable(groups, groupIndex, position);
740740
}

0 commit comments

Comments
 (0)