We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e019150 commit 92341d9Copy full SHA for 92341d9
src/resources/views/crud/fields/select_from_array.blade.php
@@ -17,7 +17,7 @@
17
18
@if (count($field['options']))
19
@foreach ($field['options'] as $key => $value)
20
- @if((old(square_brackets_to_dots($field['name'])) && (
+ @if((old(square_brackets_to_dots($field['name'])) !== null && (
21
$key == old(square_brackets_to_dots($field['name'])) ||
22
(is_array(old(square_brackets_to_dots($field['name']))) &&
23
in_array($key, old(square_brackets_to_dots($field['name'])))))) ||
0 commit comments