Skip to content

Commit

Permalink
Show referenced OVAL State
Browse files Browse the repository at this point in the history
  • Loading branch information
Honny1 committed Aug 21, 2023
1 parent a0c5840 commit b89378c
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,13 @@ function generate_referenced_endpoints(test_info, div) {
generate_OVAL_variable(endpoint, div);
} else if(id.includes(":obj:")) {
generate_OVAL_object(endpoint, div);
} else if(id.includes(":ste:")) {
div.appendChild(BR.cloneNode());
const heading = H1.cloneNode();
heading.textContent ='OVAL State definition: ';
heading.className = "pf-c-title pf-m-lg";
div.appendChild(heading);
generate_OVAL_state(endpoint, div);
} else {
// eslint-disable-next-line no-console
console.error("Not implemented endpoint type!");
Expand Down

0 comments on commit b89378c

Please sign in to comment.