Skip to content

Commit 8e55c83

Browse files
committed
Merge branch 'fix/changing-select-multiple-loses-values' of github.com:backstagephp/fields into fix/changing-select-multiple-loses-values
2 parents 740bac0 + 3cbc673 commit 8e55c83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Concerns/HasSelectableValues.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ protected function selectableValuesFormFields(string $type, string $label, strin
207207
])
208208
->afterStateHydrated(function (Forms\Get $get, Forms\Set $set) use ($type) {
209209
$value = $get("config.{$type}");
210-
210+
211211
// Set correct config value when creating records
212212
$set("config.{$type}", is_array($value) ? $value : (is_bool($value) ? [] : [$value]));
213213
})

0 commit comments

Comments
 (0)