Skip to content

Commit a4cb80c

Browse files
jcheng5schloerke
authored andcommitted
Fix Crosstalk + Shiny redraw issue (#584)
Fixes rstudio/crosstalk#58
1 parent bff826a commit a4cb80c

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
leaflet 2.0.3
2+
--------------------------------------------------------------------------------
3+
4+
BUG FIXES and IMPROVEMENTS
5+
* Fixed [rstudio/crosstalk#58](https://github.com/rstudio/crosstalk/issues/58), which caused Leaflet maps that used Crosstalk shared data in Shiny apps, to be redrawn at incorrect times.
6+
7+
8+
19
leaflet 2.0.2
210
--------------------------------------------------------------------------------
311

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-
metaData(obj$data(withSelection = TRUE, withFilter = FALSE, withKey = TRUE))
3+
metaData(obj$data(withSelection = FALSE, withFilter = FALSE, withKey = TRUE))
44
}
55

66
#' @export

0 commit comments

Comments
 (0)