Skip to content

Commit

Permalink
Length of rate was prevented from overflowing.
Browse files Browse the repository at this point in the history
  • Loading branch information
EnesSacid-Buker committed Oct 27, 2021
1 parent abc18da commit 2e8296e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/settings/currencies/index.blade.php
Expand Up @@ -46,7 +46,7 @@
</td>
<td class="col-xs-4 col-sm-3 col-md-2 col-lg-4"><a class="col-aka" href="{{ route('currencies.edit', $item->id) }}">{{ $item->name }}</a></td>
<td class="col-md-2 col-lg-2 d-none d-md-block">{{ $item->code }}</td>
<td class="col-sm-2 col-md-2 col-lg-2 d-none d-sm-block">{{ $item->rate }}</td>
<td class="col-sm-2 col-md-2 col-lg-2 long-texts d-none d-sm-block">{{ $item->rate }}</td>
<td class="col-xs-4 col-sm-3 col-md-2 col-lg-2">
@if (user()->can('update-settings-currencies'))
{{ Form::enabledGroup($item->id, $item->name, $item->enabled) }}
Expand Down

0 comments on commit 2e8296e

Please sign in to comment.