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.
1 parent d1f384f commit ae7b1b0Copy full SHA for ae7b1b0
R/dash.R
@@ -293,7 +293,7 @@ Dash <- R6::R6Class(
293
294
# inspect the output_value to determine whether any outputs have no_update
295
# objects within them; these should not be updated
296
- if (class(output_value) == "no_update") {
+ if (length(output_value) == 1 && class(output_value) == "no_update") {
297
response$body <- character(1) # return empty string
298
response$status <- 204L
299
}
0 commit comments