Skip to content

Commit

Permalink
Re-format fileset info
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Aug 2, 2022
1 parent 767faa0 commit b757d16
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,14 @@
var repo = data.repo,
client = data.client,
html = "";
let title = `Fileset ID: <strong>${data.fileset.id}</strong> contains ${repo.length} Image file${ repo.length>1 ? "s" : ""}:`
$panel_title.html(title);
$panel_title.html("Fileset Info");

html += `<p>Fileset ID: <strong>${data.fileset.id}</strong></p>`

html += `<p>File count: <strong>${repo.length}</strong></p>`

if (importTransfer) {
html += "<p>Imported with <strong>--transfer="+ importTransfer;
html += "</strong></p><hr/>";
html += "<p>Imported with: <strong>--transfer="+ importTransfer + "</strong></p>";
}

html += "<p>Imported from:</p>";
Expand Down

0 comments on commit b757d16

Please sign in to comment.