Added manual group changing, stbility improvements.
This commit is contained in:
@@ -89,7 +89,10 @@ export const GetSupplementDelta = async (jobId, existingLinesO, newLines) => {
|
||||
//Found a relevant matching line. Add it to lines to update.
|
||||
linesToUpdate.push({
|
||||
id: existingLines[matchingIndex].id,
|
||||
newData: newLine,
|
||||
newData: {
|
||||
...newLine,
|
||||
ignore: existingLines[matchingIndex].ignore,
|
||||
},
|
||||
});
|
||||
//Splice out item we found for performance.
|
||||
existingLines.splice(matchingIndex, 1);
|
||||
|
||||
Reference in New Issue
Block a user