Skip to content

Commit 218828b

Browse files
authored
Merge pull request #2 from andreiio/fix/selector-input-store-string-values
Wrap string values in quotes
2 parents 8dd1cc9 + 2d753f2 commit 218828b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

views/partials/form/utils/_selector_input_store.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
@endphp
1010
@endif
1111
@if (is_numeric($formFieldsValue)) {{ $formFieldsValue }}
12+
@elseif(is_string($formFieldsValue)) '{{ $formFieldsValue }}'
1213
@else {!! $formFieldsValue !!}
1314
@endif
1415
@else

0 commit comments

Comments
 (0)