From cbd437f074af8eef8599b234599e70d43877872f Mon Sep 17 00:00:00 2001 From: Dan Curran Date: Mon, 15 Dec 2025 16:33:40 -0600 Subject: [PATCH] first pass for changes allowing for feedback review from certification team --- html/index.js | 9 +++++++++ html/results.html | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/html/index.js b/html/index.js index aa8bb18..c74af69 100644 --- a/html/index.js +++ b/html/index.js @@ -400,6 +400,9 @@ function generateTestcaseSingleResultElement (currentTestResult, tableName, id, commonTestTextContent += '

Feedback

' commonTestTextContent += '' + commonTestTextContent += '

Feedback Response

' + commonTestTextContent += '' + commonTestTextContent += '

Non-Compliant objects

' commonTestTextContent += createReasonTableAllTypes(jsonObjNonCompliant) commonTestTextContent += '

Compliant objects

' @@ -742,6 +745,12 @@ function downloadjsonHandler () { // eslint-disable-line no-unused-vars if (data !== null) { dict[keydict] = data.value } + // Also save feedback responses + const responseKeydict = 'response-' + tablesName[i] + '-' + key + const responseData = document.getElementById(responseKeydict) + if (responseData !== null) { + dict[responseKeydict] = responseData.value + } } } diff --git a/html/results.html b/html/results.html index 7347448..7675f3a 100644 --- a/html/results.html +++ b/html/results.html @@ -62,7 +62,7 @@ - +