Skip to content

Commit 075d566

Browse files
authored
fix #83
1 parent 53b2658 commit 075d566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/js/brutusin-json-forms.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,13 +358,13 @@ if (typeof brutusin === "undefined") {
358358

359359
var optionTrue = document.createElement("option");
360360
var textTrue = document.createTextNode(BrutusinForms.messages["true"]);
361-
textTrue.value = "true";
361+
optionTrue.value = "true";
362362
appendChild(optionTrue, textTrue, s);
363363
appendChild(input, optionTrue, s);
364364

365365
var optionFalse = document.createElement("option");
366366
var textFalse = document.createTextNode(BrutusinForms.messages["false"]);
367-
textFalse.value = "false";
367+
optionFalse.value = "false";
368368
appendChild(optionFalse, textFalse, s);
369369
appendChild(input, optionFalse, s);
370370

0 commit comments

Comments
 (0)