Added manual group changing, stbility improvements.

This commit is contained in:
Patrick Fic
2020-10-21 19:36:54 -07:00
parent 34e244783c
commit 3817f8615e
30 changed files with 362 additions and 42 deletions

View File

@@ -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);