Commit 69226ec8 authored by kapsner's avatar kapsner
Browse files

fixed presentation of quick etl checks

Showing with 2 additions and 2 deletions
+2 -2
......@@ -210,7 +210,7 @@ moduleDashboardServer <- function(input, output, session, rv, input_re){
})
outputOptions(output, 'dqa_results', suspendWhenHidden=FALSE)
output$dash_quick_etlchecks <- renderDataTable({
output$dash_quick_etlchecks <- DT::renderDataTable({
dat <- quickETLChecks(rv$dqa_descriptive_results)
renderQuickETL(dat)
})
......@@ -249,7 +249,7 @@ moduleDashboardUI <- function(id){
conditionalPanel(
condition = "output['moduleDashboard-dqa_results']",
box(title = "Quick ETL-Checks: ",
dataTableOutput(ns("dash_quick_etlchecks")),
DT::dataTableOutput(ns("dash_quick_etlchecks")),
width = 12
)
)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment