Skip to content

Commit

Permalink
fixed #1910
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Mar 17, 2021
1 parent 7dfcd49 commit e25a454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/settings/categories/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
{{ Form::bulkActionGroup($item->id, $item->name) }}
</td>
<td class="col-xs-4 col-sm-3 col-md-2 col-lg-4"><a class="col-aka" href="{{ route('categories.edit', $item->id) }}">{{ $item->name }}</a></td>
<td class="col-sm-2 col-md-2 col-lg-2 d-none d-sm-block">{{ $types[$item->type] }}</td>
<td class="col-sm-2 col-md-2 col-lg-2 d-none d-sm-block">{{ $types[$item->type] ?? trans('general.na') }}</td>
<td class="col-md-2 col-lg-2 d-none d-md-block"><i class="fa fa-2x fa-circle" style="color:{{ $item->color }};"></i></td>
<td class="col-xs-4 col-sm-3 col-md-2 col-lg-2">
@if (user()->can('update-settings-categories'))
Expand Down

0 comments on commit e25a454

Please sign in to comment.