We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
names(...)
event_data()
1 parent 16261c3 commit dc6455fCopy full SHA for dc6455f
NEWS.md
@@ -1,5 +1,9 @@
1
# plotly (development version)
2
3
+## Bug fixes
4
+
5
+* Closed #2337: Creating a new `event_data()` handler no longer causes a spurious reactive update of existing `event_data()`s. (#2339)
6
7
# 4.10.4
8
9
## Improvements
R/shiny.R
@@ -193,7 +193,7 @@ event_data <- function(
193
194
} else {
195
196
- eventHasStorage <- eventID %in% names(session$userData$plotlyInputStore)
+ eventHasStorage <- eventID %in% shiny::isolate(names(session$userData$plotlyInputStore))
197
198
if (!eventHasStorage) {
199
# store input value as a reactive value to leverage caching
0 commit comments