Skip to content

Commit

Permalink
🐛 Fix bug with images not being displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuDeBuck committed Oct 31, 2023
1 parent 6678e33 commit 3073682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function setFinalImage(side, index, deleteImage) {
const images = side === "left" ? IMAGES_LEFT : IMAGES_RIGHT;

let randomImage = $(`#random-image-${side}`);
$("#random-image-div").css("display", "");
$(`#random-image-div-${side}`).css("display", "");
randomImage.prop("src", images[index]);
randomImage.addClass("random-selected");
$("#pick-button").prop("disabled", false);
Expand Down

0 comments on commit 3073682

Please sign in to comment.