Skip to content

Commit e772ae2

Browse files
committed
avoid using filter='top' for now
1 parent 72170f9 commit e772ae2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

146-ames-explorer/modules/data_modules.R

+3-1
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,10 @@ dataviewer_mod_server <- function(input, output, session, dataset) {
105105
cols_select <- c("Year_Built", "Year_Sold", "Sale_Price", "Sale_Condition", "Lot_Frontage", "House_Style",
106106
"Lot_Shape", "Overall_Cond", "Overall_Qual")
107107

108+
# TODO: go back to using filter='top' once this issue is fixed
109+
# https://github.com/rstudio/DT/issues/639
108110
output$table <- renderDT({
109111
filter(dataset(), selected_) %>%
110112
select(one_of(cols_select))
111-
}, filter = 'top', selection = 'none')
113+
}, selection = 'none')
112114
}

0 commit comments

Comments
 (0)