Fixed configuration repository select field issue

This commit is contained in:
jitendra 2019-02-13 13:11:31 +05:30
parent 98f3edc199
commit 5c4ab00f83
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@
@if (isset($field['repository']))
@foreach ($value as $key => $option)
<option value="{{ $value[$key] }}" {{ $value[$key] == $selectedOption ? 'selected' : ''}}>
{{ trans($value[$key]) }}
<option value="{{ $key }}" {{ $option == $selectedOption ? 'selected' : ''}}>
{{ trans($option) }}
</option>
@endforeach