Skip to content

Commit

Permalink
fix: Selection indicator large number formatting in some locales
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Nov 30, 2024
1 parent c9e458a commit d724acd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)]) }}
</x-filament::link>

<x-filament::link
Expand Down

0 comments on commit d724acd

Please sign in to comment.