diff --git a/html/template/sync/pool-by-id.html b/html/template/sync/upload-by-id.html similarity index 98% rename from html/template/sync/pool-by-id.html rename to html/template/sync/upload-by-id.html index 382a0649..83199ad0 100644 --- a/html/template/sync/pool-by-id.html +++ b/html/template/sync/upload-by-id.html @@ -15,7 +15,7 @@ function handleShowIssuesOnly() { const allRows = document.querySelectorAll('tr'); if (checkboxShowIssuesOnly.checked) { allRows.forEach(row => { - if (!row.classList.contains("has-error")) { + if (!(row.classList.contains("has-error") || row.classList.contains("header"))) { row.style.display = "none"; } }); @@ -155,7 +155,7 @@ document.addEventListener('DOMContentLoaded', onLoad);
- + diff --git a/sync/upload.go b/sync/upload.go index d5ca8d10..5b7d51e2 100644 --- a/sync/upload.go +++ b/sync/upload.go @@ -69,7 +69,7 @@ func getUploadByID(ctx context.Context, r *http.Request, org *models.Organizatio Organization: org, Upload: detail, } - return newResponse("sync/pool-by-id.html", data), nil + return newResponse("sync/upload-by-id.html", data), nil } type FormUploadPool struct{}
Street City