Skip to content

Commit

Permalink
Merge pull request #60 from Multiplicom/bugfix/decode-edit-field-value
Browse files Browse the repository at this point in the history
Coerce input to decode to string
  • Loading branch information
michielvermeir committed Jun 26, 2019
2 parents 7d031f4 + d134d6e commit 762d4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Controls/Controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ define([
inputEl.addAttribute("type", "password");
}

inputEl.addAttribute("value", he.decode(control._value));
inputEl.addAttribute("value", he.decode("" +control._value));
if (settings.placeHolder) {
inputEl.addAttribute("placeholder", settings.placeHolder);
}
Expand Down

0 comments on commit 762d4e5

Please sign in to comment.