mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-09 06:04:58 -05:00
InputRateDecorator's setInput method needs to strip of the input's ttype before looking up the input's rate policy, closes #2387
This commit is contained in:
@@ -298,6 +298,9 @@ var InputRateDecorator = function(target) {
|
||||
};
|
||||
(function() {
|
||||
this.setInput = function(name, value, opts) {
|
||||
const input = splitInputNameType(name);
|
||||
name = input.name;
|
||||
|
||||
this.$ensureInit(name);
|
||||
|
||||
if (opts.priority !== "deferred")
|
||||
|
||||
Reference in New Issue
Block a user