Skip to content

Commit

Permalink
Merge pull request #1928 from olivroy/patch-2
Browse files Browse the repository at this point in the history
Avoid tidyselect deprecation warning
  • Loading branch information
rich-iannone authored Dec 6, 2024
2 parents 31c1632 + 8e40f1a commit cd236dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/gt_preview.R
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ gt_preview <- function(
tab_style(
gt_tbl,
style = cell_fill(color = "#E4E4E4"),
locations = cells_body(columns = visible_vars, rows = ellipsis_row)
locations = cells_body(columns = all_of(visible_vars), rows = ellipsis_row)
)

gt_tbl <-
Expand Down

3 comments on commit cd236dc

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.