You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/fields/core/fieldChecklist.vue
+2-2
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@
55
55
return item[this.schema.checklistOptions.value];
56
56
} else {
57
57
if (typeof item["value"] !=="undefined") {
58
-
returnitem.value
58
+
returnitem.value;
59
59
} else {
60
60
throw"value is not defined. If you want to use another key name, add a `value` property under `checklistOptions` in the schema. https://icebob.gitbooks.io/vueformgenerator/content/fields/checklist.html#checklist-field-with-object-values";
61
61
}
@@ -70,7 +70,7 @@
70
70
return item[this.schema.checklistOptions.name];
71
71
} else {
72
72
if (typeof item["name"] !=="undefined") {
73
-
returnitem.name
73
+
returnitem.name;
74
74
} else {
75
75
throw"name is not defined. If you want to use another key name, add a `name` property under `checklistOptions` in the schema. https://icebob.gitbooks.io/vueformgenerator/content/fields/checklist.html#checklist-field-with-object-values";
Copy file name to clipboardExpand all lines: src/fields/core/fieldRadios.vue
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@
34
34
return item[this.schema.radiosOptions.value];
35
35
} else {
36
36
if (typeof item["value"] !=="undefined") {
37
-
returnitem.value
37
+
returnitem.value;
38
38
} else {
39
39
throw"value is not defined. If you want to use another key name, add a `value` property under `radiosOptions` in the schema. https://icebob.gitbooks.io/vueformgenerator/content/fields/radios.html#radios-field-with-object-values";
40
40
}
@@ -49,7 +49,7 @@
49
49
return item[this.schema.radiosOptions.name];
50
50
} else {
51
51
if (typeof item["name"] !=="undefined") {
52
-
returnitem.name
52
+
returnitem.name;
53
53
} else {
54
54
throw"name is not defined. If you want to use another key name, add a `name` property under `radiosOptions` in the schema. https://icebob.gitbooks.io/vueformgenerator/content/fields/radios.html#radios-field-with-object-values";
0 commit comments