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 53b2658 commit 075d566Copy full SHA for 075d566
src/js/brutusin-json-forms.js
@@ -358,13 +358,13 @@ if (typeof brutusin === "undefined") {
358
359
var optionTrue = document.createElement("option");
360
var textTrue = document.createTextNode(BrutusinForms.messages["true"]);
361
- textTrue.value = "true";
+ optionTrue.value = "true";
362
appendChild(optionTrue, textTrue, s);
363
appendChild(input, optionTrue, s);
364
365
var optionFalse = document.createElement("option");
366
var textFalse = document.createTextNode(BrutusinForms.messages["false"]);
367
- textFalse.value = "false";
+ optionFalse.value = "false";
368
appendChild(optionFalse, textFalse, s);
369
appendChild(input, optionFalse, s);
370
0 commit comments