From 55e64b1f36a4a09fdead04ce1450cf2f506e1dad Mon Sep 17 00:00:00 2001 From: Nadya Date: Sun, 20 May 2018 15:12:33 -0700 Subject: [PATCH] Fix: File Deletion for No Thumbnail in Album View If a file did not have a thumbnail the delete button would not render. --- public/js/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/dashboard.js b/public/js/dashboard.js index 8afc89d..b080402 100644 --- a/public/js/dashboard.js +++ b/public/js/dashboard.js @@ -144,7 +144,7 @@ panel.getUploads = function(album = undefined, page = undefined){ if(item.thumb !== undefined) div.innerHTML = ``; else - div.innerHTML = `

.${item.file.split('.').pop()}

`; + div.innerHTML = `

.${item.file.split('.').pop()}

`; table.appendChild(div); }