Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/speedtest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/
'build_date' => Carbon::parse('2025-12-06'),

'build_version' => 'v1.12.1',
'build_version' => 'v1.12.2',

'content_width' => env('CONTENT_WIDTH', '7xl'),

Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/latest-result-stats.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
</x-slot>

<p class="flex items-baseline gap-x-2">
<span class="text-xl font-semibold tracking-tight text-zinc-900 dark:text-zinc-100">{{ $this->latestResult?->packet_loss }}</span>
<span class="text-xl font-semibold tracking-tight text-zinc-900 dark:text-zinc-100">{{ round($this->latestResult?->packet_loss, 2) }}</span>
<span class="text-sm text-zinc-600 dark:text-zinc-400">%</span>
</p>
</x-filament::section>
Expand Down
Loading