Gitlab migration complete. If you have any issue please read the FAQ.

Commit 1a2dc568 authored by Todor Kondic's avatar Todor Kondic
Browse files

...

parent 03a0c94f
......@@ -666,7 +666,8 @@ mk_shinyscreen_server <- function() {
})
rf_get_order <- reactive({
dt <- tryCatch(rhandsontable::hot_to_r(input$order_summ),error = function(e) def_ord_summ)
dt <- if (NROW(input$order_summ)==0) def_ord_summ else rhandsontable::hot_to_r(input$order_summ)
tmp <- dt[Direction == "descending",.(`Column Name`=paste0("-",`Column Name`))]
tmp[,`Column Name`]
})
......
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