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:
Carson Sievert
2019-04-25 17:42:54 -05:00
parent ff84cf5a18
commit 82e80ccdeb

View File

@@ -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")