Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion display_qc_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,15 @@ <h1 id="main-title" style="border-bottom: 2px solid #ccc;">Quality Control Summa
}


// Function to handle the file processing
// Function to handle the file processing
function processQCResults(data) {

// Remove previously added Reference Datasets block (if any)
const oldDetails = document.getElementById("referenceOptionalDetails");
if (oldDetails) {
oldDetails.remove();
}

const info = data.info;
document.getElementById("title").textContent = `QC Results for '${info.id}' (from: ${info.date})`;
document.getElementById("subtitle").textContent = ` IOOS Compliance Checker (${info.cc_version}) - ${info.checkers}`;
Expand Down
Loading