Skip to content

Commit 3c9fb55

Browse files
authored
Merge pull request #246 from jan-cerny/unwanted_scrollbars
Prevent unwanted scrollbars
2 parents c00f465 + 13e7879 commit 3c9fb55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openscap_report/report_generators/html_templates/js/oval_graph_generation_script.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ function generate_OVAL_endpoint(div, title, kv_entries, data, referenced_id, tes
714714
div.appendChild(get_header(title));
715715
div.appendChild(BR.cloneNode());
716716
const table_div = DIV.cloneNode();
717-
table_div.className = "pf-c-scroll-inner-wrapper oval-test-detail-table";
717+
table_div.className = "oval-test-detail-table";
718718
div.appendChild(table_div);
719719

720720
const table = TABLE.cloneNode();
@@ -889,7 +889,7 @@ function get_OVAL_test_info(test_info) {
889889
div.appendChild(BR.cloneNode());
890890

891891
const table_div = DIV.cloneNode();
892-
table_div.className = "pf-c-scroll-inner-wrapper oval-test-detail-table";
892+
table_div.className = "oval-test-detail-table";
893893
div.appendChild(table_div);
894894

895895
const table = TABLE.cloneNode();

0 commit comments

Comments
 (0)