Skip to content

Commit 415773c

Browse files
committed
fix
1 parent 74fc070 commit 415773c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

R/print_html.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ print_html.estimate_grouplevel <- print_html.estimate_contrasts
5858
# we allow exporting HTML format based on "gt" or "tinytable"
5959
.check_format_backend <- function(...) {
6060
dots <- list(...)
61-
if (is.null(dots) || !identical(dots$backend, "tt")) {
62-
"html"
63-
} else {
61+
if (identical(dots$backend, "tt")) {
6462
"tt"
63+
} else {
64+
"html"
6565
}
6666
}

0 commit comments

Comments
 (0)