@uipath/apollo-react 3.59.0 → 3.59.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -149,8 +149,8 @@ function mergeGroupDown(tasks, groupIndex, taskIndex) {
149
149
  const currentGroupWithoutTask = currentGroup.filter((_, idx)=>idx !== taskIndex);
150
150
  if (belowGroup) {
151
151
  updatedTasks[groupIndex + 1] = [
152
- ...belowGroup,
153
- task
152
+ task,
153
+ ...belowGroup
154
154
  ];
155
155
  if (currentGroupWithoutTask.length > 0) updatedTasks[groupIndex] = currentGroupWithoutTask;
156
156
  else updatedTasks.splice(groupIndex, 1);
@@ -111,8 +111,8 @@ function mergeGroupDown(tasks, groupIndex, taskIndex) {
111
111
  const currentGroupWithoutTask = currentGroup.filter((_, idx)=>idx !== taskIndex);
112
112
  if (belowGroup) {
113
113
  updatedTasks[groupIndex + 1] = [
114
- ...belowGroup,
115
- task
114
+ task,
115
+ ...belowGroup
116
116
  ];
117
117
  if (currentGroupWithoutTask.length > 0) updatedTasks[groupIndex] = currentGroupWithoutTask;
118
118
  else updatedTasks.splice(groupIndex, 1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/apollo-react",
3
- "version": "3.59.0",
3
+ "version": "3.59.1",
4
4
  "description": "Apollo Design System - React component library with Material UI theming",
5
5
  "repository": {
6
6
  "type": "git",