diff --git a/wire/modules/Fieldtype/FieldtypeOptions/SelectableOptionArray.php b/wire/modules/Fieldtype/FieldtypeOptions/SelectableOptionArray.php index 5868a732..1b31bb24 100644 --- a/wire/modules/Fieldtype/FieldtypeOptions/SelectableOptionArray.php +++ b/wire/modules/Fieldtype/FieldtypeOptions/SelectableOptionArray.php @@ -223,7 +223,7 @@ class SelectableOptionArray extends WireArray { foreach($this as $option) { /** @var SelectableOption $option */ $v = $option->getProperty($property); - if($v !== $value) continue; + if("$v" !== "$value") continue; $match = $option; break; }