mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
client/general: show empty thumbnails as grid
This commit is contained in:
@ -42,10 +42,12 @@ function makeRelativeTime(time) {
|
||||
function makeThumbnail(url) {
|
||||
return makeNonVoidElement(
|
||||
'span',
|
||||
{
|
||||
class: 'thumbnail',
|
||||
style: `background-image: url(\'${url}\')`,
|
||||
},
|
||||
url ?
|
||||
{
|
||||
class: 'thumbnail',
|
||||
style: `background-image: url(\'${url}\')`,
|
||||
} :
|
||||
{class: 'thumbnail empty'},
|
||||
makeVoidElement('img', {alt: 'thumbnail', src: url}));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user