frayerjj-frontend 0.8.34 → 0.8.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/hasMany.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frayerjj-frontend",
3
- "version": "0.8.34",
3
+ "version": "0.8.35",
4
4
  "description": "My base frontend for various projects",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/hasMany.js CHANGED
@@ -88,7 +88,7 @@ export const hasMany = {
88
88
  if (option.checked)
89
89
  input.checked = true
90
90
  input.id = name + option.id;
91
- input.value = id;
91
+ input.value = option.id;
92
92
  item.appendChild(input);
93
93
  // Create label
94
94
  let label = document.createElement('label');