From d724acdbf9ef3f77a8bcb93270380f1bc05aef18 Mon Sep 17 00:00:00 2001 From: Dan Harrin Date: Sat, 30 Nov 2024 08:54:29 +0000 Subject: [PATCH] fix: Selection indicator large number formatting in some locales --- .../resources/views/components/selection/indicator.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tables/resources/views/components/selection/indicator.blade.php b/packages/tables/resources/views/components/selection/indicator.blade.php index 320018379ed..fbcaf4ba611 100644 --- a/packages/tables/resources/views/components/selection/indicator.blade.php +++ b/packages/tables/resources/views/components/selection/indicator.blade.php @@ -49,7 +49,7 @@ class="text-sm font-medium leading-6 text-gray-700 dark:text-gray-200" {{-- Make sure the Alpine attributes get re-evaluated after a Livewire request: --}} :wire:key="$this->getId() . 'table.selection.indicator.actions.select-all.' . $allSelectableRecordsCount . '.' . $page" > - {{ trans_choice('filament-tables::table.selection_indicator.actions.select_all.label', \Illuminate\Support\Number::format($allSelectableRecordsCount)) }} + {{ trans_choice('filament-tables::table.selection_indicator.actions.select_all.label', $allSelectableRecordsCount, ['count' => \Illuminate\Support\Number::format($allSelectableRecordsCount)]) }}