Skip to content

Commit

Permalink
Update mod_viewData.R
Browse files Browse the repository at this point in the history
bug fixed
  • Loading branch information
YonghuiDong committed Sep 10, 2023
1 parent 3b65c6e commit 2f69006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/mod_viewData.R
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ mod_viewData_server <- function(id, global){

output$predictionTable <- DT::renderDT({
shiny::req(ISQuan$fit)
shiny::validate(need(input$mzValues != "", message = "Intensities are missing."))
shiny::validate(need(input$quanInt != "", message = "Intensities are missing."))
ISQuan$prediction <- getQuan(mod = ISQuan$fit, Intensity = text2Num(input$quanInt))
DT::datatable(ISQuan$prediction,
caption = "Quantification table",
Expand Down

0 comments on commit 2f69006

Please sign in to comment.