Skip to content

Commit 00bb41c

Browse files
committed
metaData.SharedData wasn't calling metaData itself
1 parent 5a6ef86 commit 00bb41c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ leaflet 1.1.1
44
* Add `groupOptions` parameter, currently the only option is letting you specify
55
zoom levels at which a group should be visible.
66

7+
* Fix bug with accessing columns in formulas when the data source is a Crosstalk
8+
SharedData object wrapping a spatial data frame or sf object.
9+
710
leaflet 1.1.0
811
--------------------------------------------------------------------------------
912

R/normalize-SharedData.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' @export
22
metaData.SharedData <- function(obj) {
3-
obj$data(withSelection = TRUE, withFilter = FALSE, withKey = TRUE)
3+
metaData(obj$data(withSelection = TRUE, withFilter = FALSE, withKey = TRUE))
44
}
55

66
#' @export

0 commit comments

Comments
 (0)