Renamed parameter for default display for output custom control: defaultValue => default
This commit is contained in:
parent
ba1bab4ee7
commit
6e1e869851
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ $(function() {
|
|||
}
|
||||
|
||||
if (control.hasOwnProperty("template") && control.hasOwnProperty("key") && control.hasOwnProperty("template_key") && !control.hasOwnProperty("output")) {
|
||||
control.output = ko.observable(control.defaultValue || "");
|
||||
control.output = ko.observable(control.default || "");
|
||||
if (!self.feedbackControlLookup.hasOwnProperty(control.key)) {
|
||||
self.feedbackControlLookup[control.key] = {};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue