Skip to content

Commit

Permalink
Minor fix ui
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhsan3adi committed Jun 30, 2024
1 parent 87e9f5e commit 4269036
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion resources/views/livewire/admin/attendance.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,9 @@ class="max-h-64 object-contain md:max-h-96">
$currentAttendance['coordinates']['lng']
)
<x-label for="map" value="Koordinat Lokasi Absen"></x-label>
<p>{{ $currentAttendance['coordinates']['lat'] }}, {{ $currentAttendance['coordinates']['lng'] }}</p>
<p class="dark:text-gray-300">
{{ $currentAttendance['coordinates']['lat'] }}, {{ $currentAttendance['coordinates']['lng'] }}
</p>
<div class="my-2 h-52 w-full md:h-64" id="map"></div>
@endif
@if ($currentAttendance['time_in'] || $currentAttendance['time_out'])
Expand Down
4 changes: 3 additions & 1 deletion resources/views/livewire/admin/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ class="max-h-64 object-contain md:max-h-96">
$currentAttendance['coordinates']['lng']
)
<x-label for="map" value="Koordinat Lokasi Absen"></x-label>
<p>{{ $currentAttendance['coordinates']['lat'] }}, {{ $currentAttendance['coordinates']['lng'] }}</p>
<p class="dark:text-gray-300">
{{ $currentAttendance['coordinates']['lat'] }}, {{ $currentAttendance['coordinates']['lng'] }}
</p>
<div class="my-2 h-52 w-full md:h-64" id="map"></div>
@endif
@if ($currentAttendance['time_in'] || $currentAttendance['time_out'])
Expand Down
4 changes: 3 additions & 1 deletion resources/views/livewire/attendance-history.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ class="max-h-64 object-contain md:max-h-96">
$currentAttendance['coordinates']['lng']
)
<x-label for="map" value="Koordinat Lokasi Absen"></x-label>
<p>{{ $currentAttendance['coordinates']['lat'] }}, {{ $currentAttendance['coordinates']['lng'] }}</p>
<p class="dark:text-gray-300">
{{ $currentAttendance['coordinates']['lat'] }}, {{ $currentAttendance['coordinates']['lng'] }}
</p>
<div class="my-2 h-52 w-full md:h-64" id="map"></div>
@endif
@if ($currentAttendance['time_in'] || $currentAttendance['time_out'])
Expand Down

0 comments on commit 4269036

Please sign in to comment.