diff --git a/main/coverage-report/index.html b/main/coverage-report/index.html
index b73a05658..0ef2f694f 100644
--- a/main/coverage-report/index.html
+++ b/main/coverage-report/index.html
@@ -3,9 +3,10 @@
diff --git a/main/coverage-report/lib/datatables-binding-0.32/datatables.js b/main/coverage-report/lib/datatables-binding-0.33/datatables.js
similarity index 99%
rename from main/coverage-report/lib/datatables-binding-0.32/datatables.js
rename to main/coverage-report/lib/datatables-binding-0.33/datatables.js
index 6a3c3d5cb..765b53cb1 100644
--- a/main/coverage-report/lib/datatables-binding-0.32/datatables.js
+++ b/main/coverage-report/lib/datatables-binding-0.33/datatables.js
@@ -1032,6 +1032,9 @@ HTMLWidgets.widget({
updateColsSelected();
updateCellsSelected();
})
+ updateRowsSelected();
+ updateColsSelected();
+ updateCellsSelected();
}
var selMode = data.selection.mode, selTarget = data.selection.target;
diff --git a/main/coverage-report/lib/htmltools-fill-0.5.8.1/fill.css b/main/coverage-report/lib/htmltools-fill-0.5.8.1/fill.css
new file mode 100644
index 000000000..841ea9d59
--- /dev/null
+++ b/main/coverage-report/lib/htmltools-fill-0.5.8.1/fill.css
@@ -0,0 +1,21 @@
+@layer htmltools {
+ .html-fill-container {
+ display: flex;
+ flex-direction: column;
+ /* Prevent the container from expanding vertically or horizontally beyond its
+ parent's constraints. */
+ min-height: 0;
+ min-width: 0;
+ }
+ .html-fill-container > .html-fill-item {
+ /* Fill items can grow and shrink freely within
+ available vertical space in fillable container */
+ flex: 1 1 auto;
+ min-height: 0;
+ min-width: 0;
+ }
+ .html-fill-container > :not(.html-fill-item) {
+ /* Prevent shrinking or growing of non-fill items */
+ flex: 0 0 auto;
+ }
+}