Skip to content

Commit cb60702

Browse files
langeuhz-song
authored andcommitted
fix width issue
Same as in other views with a select
1 parent 16109e6 commit cb60702

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

views/form/tags.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
@include('admin::form.error')
88

9-
<select class="form-control {{$class}}" name="{{$name}}[]" multiple="multiple" data-placeholder="{{ $placeholder }}" {!! $attributes !!} >
9+
<select class="form-control {{$class}}" style="width: 100%;" name="{{$name}}[]" multiple="multiple" data-placeholder="{{ $placeholder }}" {!! $attributes !!} >
1010
@foreach($value as $select)
1111
<option value="{{$select}}" selected>{{$select}}</option>
1212
@endforeach

0 commit comments

Comments
 (0)