You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
515 B
21 lines
515 B
|
|
|
|
errUI <- function(id) {
|
|
ns <- NS(id)
|
|
tagList(highchartOutput(ns("errchart")))
|
|
}
|
|
|
|
errServer <-
|
|
function(id,
|
|
filepath="./contacts/summary", filename="Error_Contact", country) {
|
|
moduleServer(id,
|
|
function(input, output, session) {
|
|
ns <- session$ns
|
|
|
|
output$errchart <- renderHighchart({
|
|
error.function(filepath, filename, country)
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|