Skip to content

Commit

Permalink
fixes for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
azimov committed Oct 5, 2023
1 parent 0696f1a commit 6879f1d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 34 deletions.
4 changes: 2 additions & 2 deletions R/characterization-incidence.R
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ force_panelsizes <- function(rows = NULL, cols = NULL, respect = NULL, total_wid
if (!grid::is.unit(total_width)) {
stop("{.arg total_width} must be a {.cls unit} object.")
}
arg_match0(grid::unitType(total_width), c("cm", "mm", "inches", "points"))
rlang::arg_match0(grid::unitType(total_width), c("cm", "mm", "inches", "points"))
}
if (!is.null(total_height)) {
if (grid::is.unit(rows) && !is_null_unit(rows)) {
Expand All @@ -69,7 +69,7 @@ force_panelsizes <- function(rows = NULL, cols = NULL, respect = NULL, total_wid
if (!grid::is.unit(total_height)) {
stop("{.arg total_height} must be a {.cls unit} object.")
}
arg_match0(grid::unitType(total_height), c("cm", "mm", "inches", "points"))
rlang::arg_match0(grid::unitType(total_height), c("cm", "mm", "inches", "points"))
}
structure(list(rows = rows, cols = cols, respect = respect, total_width = total_width, total_height = total_height), class = "forcedsize")
}
Expand Down
16 changes: 0 additions & 16 deletions man/conceptsInDataSourceUi.Rd

This file was deleted.

16 changes: 0 additions & 16 deletions man/visitContextUi.Rd

This file was deleted.

0 comments on commit 6879f1d

Please sign in to comment.