File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 77
88### Bug fixes
99
10- - Fixes "Add to Report" functionality in ` tm_outliers ` , ` tm_missing_data ` and ` tm_g_distribution ` modules (#899 and #897 ).
10+ - Fixed "Add to Report" functionality in ` tm_outliers ` , ` tm_missing_data ` and ` tm_g_distribution ` modules (#899 and #897 ).
11+
12+ ### Miscellaneous
13+
14+ - Fixed deprecation warning for ` tern::stack_grobs ` in ` tm_g_association ` (#903 ).
1115
1216# teal.modules.general 0.4.1
1317
Original file line number Diff line number Diff line change @@ -509,7 +509,7 @@ srv_tm_g_association <- function(id,
509509 plots <- plot_calls
510510 plot_top <- plots [[1 ]]
511511 plot_bottom <- plots [[2 ]]
512- plot <- tern :: stack_grobs( grobs = lapply( list ( plot_top , plot_bottom ), ggplot2 :: ggplotGrob ) )
512+ plot <- gridExtra :: grid.arrange( plot_top , plot_bottom , ncol = 1 )
513513 },
514514 env = list (
515515 plot_calls = do.call(
You can’t perform that action at this time.
0 commit comments