From 08622bd092eedc09c0dcc38c573e512b2c274647 Mon Sep 17 00:00:00 2001 From: Flo Greistorfer Date: Mon, 15 Sep 2025 13:19:45 +0200 Subject: [PATCH] added non breaking space --- templates/functionality.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/functionality.js b/templates/functionality.js index 32b20d2..fd5adcc 100644 --- a/templates/functionality.js +++ b/templates/functionality.js @@ -248,8 +248,8 @@ class PhotoGallery { let str = ""; this.shown.forEach((item, index) => { str += `
${item.name}`; - if (item.tiff) str += ` TIFF`; - if (item.raw) str += ` RAW`; + if (item.tiff) str += ` TIFF`; + if (item.raw) str += ` RAW`; str += "
"; }); imagelist.innerHTML = str;