ソースを参照

Fix: File Deletion for No Thumbnail in Album View

If a file did not have a thumbnail the delete button would not render.
Nadya 6 年 前
コミット
55e64b1f36
1 ファイル変更1 行追加1 行削除
  1. 1 1
      public/js/dashboard.js

+ 1 - 1
public/js/dashboard.js

@@ -144,7 +144,7 @@ panel.getUploads = function(album = undefined, page = undefined){
 				if(item.thumb !== undefined)
 					div.innerHTML = `<a href="${item.file}" target="_blank"><img src="${item.thumb}"/></a><a class="button is-small is-danger is-outlined" title="Delete file" onclick="panel.deleteFile(${item.id})"><span class="icon is-small"><i class="fa fa-trash-o"></i></span></a>`;
 				else
-					div.innerHTML = `<a href="${item.file}" target="_blank"><h1 class="title">.${item.file.split('.').pop()}</h1></a>`;
+					div.innerHTML = `<a href="${item.file}" target="_blank"><h1 class="title">.${item.file.split('.').pop()}</h1></a><a class="button is-small is-danger is-outlined" title="Delete file" onclick="panel.deleteFile(${item.id})"><span class="icon is-small"><i class="fa fa-trash-o"></i></span></a>`;
 				table.appendChild(div);
 
 			}