Skip to content

Commit 7f963e2

Browse files
committed
Do not try to automatically fill the container
Something seems wrong with DT's autodetection, it is making the table much too small. Unfortunately I don't have time to track down the root cause, and simply disabling the auto fill improves the situation. Fixes #494
1 parent deba938 commit 7f963e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/report.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ report <- function(x = package_coverage(),
5757
table <- DT::datatable(
5858
data$file_stats,
5959
escape = FALSE,
60-
fillContainer = TRUE,
60+
fillContainer = FALSE,
6161
options = list(
6262
searching = FALSE,
6363
dom = "t",

0 commit comments

Comments
 (0)