File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ renderDataTable = function(
182
182
uiFunc = dataTableOutput ,
183
183
renderFunc = function (shinysession , name , ... ) {
184
184
domain = tempVarsPromiseDomain(outputInfoEnv , outputName = name , session = shinysession )
185
- removeTimestampFromSnapshot(name )
185
+ removeTimestampFromSnapshot(name , shinysession )
186
186
promises :: with_promise_domain(domain , renderFunc())
187
187
},
188
188
outputArgs = outputArgs ,
@@ -231,11 +231,11 @@ setAll = function(lst, env) {
231
231
invisible ()
232
232
}
233
233
234
- removeTimestampFromSnapshot = function (name ) {
234
+ removeTimestampFromSnapshot = function (name , session ) {
235
235
shiny :: snapshotPreprocessInput(paste0(name , " _state" ), function (value ) {
236
236
value $ time <- NULL
237
237
value
238
- })
238
+ }, session )
239
239
}
240
240
241
241
# This promise domain is needed to set/unset temporary variables in
You can’t perform that action at this time.
0 commit comments