@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
|
-
|
|
153
|
-
|
|
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
|
-
|
|
115
|
-
|
|
114
|
+
task,
|
|
115
|
+
...belowGroup
|
|
116
116
|
];
|
|
117
117
|
if (currentGroupWithoutTask.length > 0) updatedTasks[groupIndex] = currentGroupWithoutTask;
|
|
118
118
|
else updatedTasks.splice(groupIndex, 1);
|