Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlynch2 committed Jul 5, 2019
1 parent 5bfcf9d commit d95afa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/QA3D/server/QA3D.r
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ observeEvent(input$mspec3D, {

observeEvent(input$Process, {
showModal(modalDialog(title = "Calculation has started...Window will update when finished.", easyClose = FALSE, footer = NULL))
withProgress(message = 'Calculation has started', detail = '', value = 0, {
withProgress(message = 'Calculation has started', detail = '', value = 0, {
for (i in 1:10) {
incProgress(1/10)
Sys.sleep(0.05)
Expand Down Expand Up @@ -80,7 +80,7 @@ observeEvent(input$Process, {
)

output$table1 <- DT::renderDataTable({
DT::datatable(report_pw, options = list(dom = 't'), rownames = FALSE)
DT::datatable(report_pw, options = list(pageLength = 50, dom = 't'), rownames = FALSE)
})
output$table2 <- DT::renderDataTable({
DT::datatable(report_gr, options = list(dom = 't'), rownames = FALSE)
Expand Down

0 comments on commit d95afa2

Please sign in to comment.