terrier-engine 4.58.7 → 4.58.8

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.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "files": [
5
5
  "*"
6
6
  ],
7
- "version": "4.58.7",
7
+ "version": "4.58.8",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Terrier-Tech/terrier-engine"
@@ -69,8 +69,8 @@ export class SelectFieldPart<T extends SelectFieldState> extends TerrierPart<T>
69
69
 
70
70
  // find the option where title is empty and use that as the blank option value
71
71
  return options.find((opt) => {
72
- if ('title' in opt) {
73
- return opt.title == ''
72
+ if ('value' in opt) {
73
+ return opt.value == ''
74
74
  } else return false
75
75
  }) || option
76
76
  } else {