Skip to content

Commit

Permalink
Merge pull request #155 from OHDSI/sort_lsc
Browse files Browse the repository at this point in the history
descending order by percentage
  • Loading branch information
edward-burn authored Dec 4, 2024
2 parents 1cded1d + 9c7c46c commit 2910eb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inst/shiny/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,8 @@ server <- function(input, output, session) {
})
output$summarise_large_scale_characteristics_tidy <- DT::renderDT({
DT::datatable(
getTidyDataSummariseLargeScaleCharacteristics(),
getTidyDataSummariseLargeScaleCharacteristics() |>
dplyr::arrange(dplyr::desc(percentage)),
options = list(scrollX = TRUE),
rownames = FALSE
)
Expand Down

0 comments on commit 2910eb4

Please sign in to comment.