Merge pull request #80 from cse110-fa22-group29/req-stars-fix

Req stars fix
This commit is contained in:
Kara Hoagland 2022-11-20 23:37:45 -08:00 committed by GitHub
commit 5a05741e08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,6 +71,7 @@ function initFormHandler() {
reviewObject["mealImg"] = imgDataURL;
}
}
if(reviewObject["rating"] != null){
reviewObject["tags"] = [];
let tags = document.querySelectorAll(".tag");
@ -83,6 +84,9 @@ function initFormHandler() {
sessionStorage.setItem("currID", JSON.stringify(nextReviewId));
window.location.assign("./ReviewDetails.html");
} else{
window.alert("NO! FILL IN STARS");
}
});