1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-12-02 20:22:52 +00:00

small tweak

This commit is contained in:
2025-11-16 01:23:50 +01:00
parent 724a7f6c19
commit dfecceae93

View File

@@ -677,7 +677,7 @@
const image = this.#images[x],
blob = dataBlob(image),
url = URL.createObjectURL(blob);
url = blob ? URL.createObjectURL(blob) : `#`;
const _link = make("a", "image", `i-${x}`);