Skip to content

Commit

Permalink
continue to fix #1075: the global search keyword also needs to be dec…
Browse files Browse the repository at this point in the history
  • Loading branch information
yihui committed Aug 28, 2023
1 parent 9fea1a7 commit 73a8cb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: DT
Type: Package
Title: A Wrapper of the JavaScript Library 'DataTables'
Version: 0.28.3
Version: 0.28.4
Authors@R: c(
person("Yihui", "Xie", email = "[email protected]", role = c("aut", "cre")),
person("Joe", "Cheng", role = "aut"),
Expand Down
1 change: 1 addition & 0 deletions R/shiny.R
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ dataTablesFilter = function(data, params) {
# global searching
if (length(i) && any((k <- q$search[['value']]) != '')) {
dg = data[i, searchable, drop = FALSE]
k = httpuv::decodeURIComponent(k)
i = i[doGlobalSearch(dg, k, options = global_opts)]
}

Expand Down

0 comments on commit 73a8cb6

Please sign in to comment.