From 3073682ebaea0a7b975d80b403298b7e7f11b998 Mon Sep 17 00:00:00 2001 From: Manu De Buck Date: Tue, 31 Oct 2023 16:47:17 +0100 Subject: [PATCH] :bug: Fix bug with images not being displayed --- actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions.js b/actions.js index 873ce4e..74f9458 100644 --- a/actions.js +++ b/actions.js @@ -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);