Skip to content

Commit

Permalink
circumvent reserved label in reporter_previewer_module
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksander Chlebowski committed Sep 19, 2023
1 parent 19bf60c commit 053405c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/reporter_previewer_module.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ reporter_previewer_module <- function(label = "Report previewer", server_args =
}

module <- module(
label = label,
label = "temporary label",
server = srv, ui = ui,
server_args = server_args, ui_args = list(), datanames = NULL
)
class(module) <- c("teal_module_previewer", class(module))
module$label <- label
module
}

0 comments on commit 053405c

Please sign in to comment.