moved from details to localStorage

This commit is contained in:
Kara Hoagland
2022-11-27 17:31:13 -08:00
parent 1484a882b2
commit dd0bcbe57d
2 changed files with 9 additions and 10 deletions

View File

@@ -178,16 +178,7 @@ function setupUpdate(){
}
newData["reviewID"] = currID;
//Get diff of tags and update storage
//Note: we can either get the difference twice or keep track when we delete and add
//if keep track also need to make sure that a tag doesn't end up on both list
let deletedTags = currReview["tags"].filter(x => !newData["tags"].includes(x));
let addedTags = newData["tags"].filter(x => !currReview["tags"].includes(x));
deleteTagsFromStorage(currID, deletedTags);
addTagsToStorage(currID, addedTags);
updateReviewToStorage(currID, newData);
updateDiv.classList.add("hidden");