Web: fix URL of 'nothing rendered yet' image

This commit is contained in:
Sybren A. Stüvel 2022-07-01 13:32:43 +02:00
parent beb8684a38
commit ae0125edcd

View File

@ -53,7 +53,7 @@ function setImageURL(thumbnailInfo) {
if (thumbnailInfo == null) {
// This indicates that there is no last-rendered image.
// Default to a hard-coded 'nothing to be seen here, move along' image.
imageURL.value = "/nothing-rendered-yet.svg";
imageURL.value = "/app/nothing-rendered-yet.svg";
cssClasses['nothing-rendered-yet'] = true;
console.log("LastRenderedImage.vue: setting image URL to:", imageURL.value);
return;