« get me outta code hell

client: image-overlay: fix thumb data-displaying-thumb - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-03-20 18:32:52 -0300
committer(quasar) nebula <qznebula@protonmail.com>2025-03-20 18:32:52 -0300
commit8ebb26916d071ff9209d4881c40961efaf20eb55 (patch)
tree4602c13e88748f295f9d182fc0bb6d02b26b4c52
parentc00be212b5e4689409cdbf0a629bb62a2e8b3765 (diff)
client: image-overlay: fix thumb data-displaying-thumb
-rw-r--r--src/static/js/client/image-overlay.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/client/image-overlay.js b/src/static/js/client/image-overlay.js
index bcb1b277..a914d97c 100644
--- a/src/static/js/client/image-overlay.js
+++ b/src/static/js/client/image-overlay.js
@@ -234,7 +234,7 @@ async function loadOverlayImage(details) {
   // Show the thumbnail size on each <img> element's data attributes.
   // Y'know, just for debugging convenience.
   info.mainImage.dataset.displayingThumb = details.mainThumb;
-  info.thumbImage.dataset.displayingThumb = details.thumbThubm;
+  info.thumbImage.dataset.displayingThumb = details.thumbThumb;
 
   if (details.dimensions) {
     info.mainImage.width = details.dimensions[0];