We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
options( teal.log_level = "TRACE", teal.show_js_log = TRUE, # teal.bs_theme = bslib::bs_theme(version = 5), shiny.bookmarkStore = "server" ) pkgload::load_all("teal.data") pkgload::load_all("teal.slice") pkgload::load_all("teal") my_transformers <- list( teal_transform_module( label = "Add ELO", ui = function(id) { ns <- NS(id) tagList( div("Some UI for transform (merge)"), actionButton(ns("btn"), "Reload data") ) }, server = function(id, data) { moduleServer(id, function(input, output, session) { eventReactive(input$btn, { data() |> within(mtcars <- datasets::mtcars) }) }) } ) ) teal::init( data = teal.data::teal_data(iris = iris), modules = list( example_module("mod-1", datanames = c("mtcars"), transformers = my_transformers), example_module("mod-2", datanames = c("iris")) ) ) |> runApp()
No response
The text was updated successfully, but these errors were encountered:
I think this is fixed with my latests commit
Sorry, something went wrong.
Closing as app doesn't fail anymore for such modules
@gogonzo the sample application is still failing for the module with mtcars in datanames
mtcars
Nevermind. My pull from teal.slice was incomplete. All good!
teal.slice
gogonzo
No branches or pull requests
What happened?
sessionInfo()
No response
Relevant log output
No response
Code of Conduct
Contribution Guidelines
Security Policy
The text was updated successfully, but these errors were encountered: