reconcile responsive & share link console error fixed

This commit is contained in:
Burak Civan 2022-08-18 12:30:52 +03:00
parent 9974f9e102
commit 44a225279e
4 changed files with 17 additions and 17 deletions

View File

@ -87,7 +87,7 @@
<x-table>
<x-table.thead>
<x-table.tr>
<x-table.th class="w-2/12" hidden-mobile>
<x-table.th class="w-6/12 lg:w-2/12">
{{ trans('general.date') }}
</x-table.th>
@ -103,7 +103,7 @@
{{ trans('reconciliations.deposit') }}
</x-table.th>
<x-table.th class="w-6/12 lg:w-2/12">
<x-table.th class="w-6/12 lg:w-2/12" hidden-mobile>
{{ trans('reconciliations.withdrawal') }}
</x-table.th>
@ -116,7 +116,7 @@
<x-table.tbody>
@foreach($transactions as $item)
<x-table.tr>
<x-table.td class="w-2/12" hidden-mobile kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-date date="{{ $item->paid_at }}" />
</x-table.td>
@ -129,19 +129,19 @@
</x-table.td>
@if ($item->isIncome())
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
</x-table.td>
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-empty-data />
</x-table.td>
@else
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-empty-data />
</x-table.td>
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
</x-table.td>
@endif

View File

@ -21,7 +21,7 @@
<x-table>
<x-table.thead>
<x-table.tr>
<x-table.th class="w-2/12" hidden-mobile>
<x-table.th class="w-6/12 lg:w-2/12">
{{ trans('general.date') }}
</x-table.th>
@ -37,7 +37,7 @@
{{ trans('reconciliations.deposit') }}
</x-table.th>
<x-table.th class="w-6/12 lg:w-2/12">
<x-table.th class="w-6/12 lg:w-2/12" hidden-mobile>
{{ trans('reconciliations.withdrawal') }}
</x-table.th>
@ -50,7 +50,7 @@
<x-table.tbody>
@foreach($transactions as $item)
<x-table.tr>
<x-table.td class="w-2/12" hidden-mobile kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-date date="{{ $item->paid_at }}" />
</x-table.td>
@ -63,19 +63,19 @@
</x-table.td>
@if ($item->isIncome())
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-money :amount="$item->amount" hidden-mobile :currency="$item->currency_code" convert />
</x-table.td>
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-empty-data />
</x-table.td>
@else
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-empty-data />
</x-table.td>
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
</x-table.td>
@endif

View File

@ -10,7 +10,7 @@
value="{{ $signedUrl }}"
ref="clone"
@click="onCopyLink()"
class="bg-gray-100 appearance-none border-2 border-gray-100 rounded w-full py-2 px-4 text-gray-700 leading-tight cursor-pointer focus:outline-none focus:ring-transparent focus:border-transparent"
style="appearance: none; background-color: whitesmoke; border: none; font-size: 16px;"
/>
<x-form.input.hidden name="hidden-share" value="{{ $signedUrl }}" />

View File

@ -10,7 +10,7 @@
value="{{ $signedUrl }}"
ref="clone"
@click="onCopyLink()"
class="bg-gray-100 appearance-none border-2 border-gray-100 rounded w-full py-2 px-4 text-gray-700 leading-tight cursor-pointer focus:outline-none focus:ring-transparent focus:border-transparent"
style="appearance: none; background-color: whitesmoke; border: none; font-size: 16px;"
/>
<x-form.input.hidden name="hidden-share" value="{{ $signedUrl }}" />