aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2023-12-24 03:23:08 +0100
committerPřemysl Eric Janouch <p@janouch.name>2023-12-24 03:23:08 +0100
commit2898e8dbb11e5d69934ae39cb8152120b8cc0b21 (patch)
treefd3f531dd7be64d849cb06f68e1b6ca0b45a3caf /public
parente8882a611a4f505289c73d7e90a5fd0910896c5c (diff)
downloadgallery-2898e8dbb11e5d69934ae39cb8152120b8cc0b21.tar.gz
gallery-2898e8dbb11e5d69934ae39cb8152120b8cc0b21.tar.xz
gallery-2898e8dbb11e5d69934ae39cb8152120b8cc0b21.zip
Fixup
Diffstat (limited to 'public')
-rw-r--r--public/gallery.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/public/gallery.js b/public/gallery.js
index dbcadf6..c7d21a1 100644
--- a/public/gallery.js
+++ b/public/gallery.js
@@ -427,8 +427,10 @@ let OrphansRow = {
view(node) {
const info = vnode.attrs.info
return m('.row', [
- m('img.thumbnail', {src: `/thumb/${info.sha1}`,
- width: info.thumbW, height: info.thumbH, loading}),
+ // It might not load, but still allow tag viewing.
+ m(m.route.Link, {href: `/view/${info.sha1}`},
+ m('img.thumbnail', {src: `/thumb/${info.sha1}`,
+ width: info.thumbW, height: info.thumbH, loading})),
`${info.tags} tags`,
m(OrphansReplacement, {info: info.replacement}),
])