Skip to content

Commit

Permalink
Merge pull request filamentphp#14924 from filamentphp/fix/selection-i…
Browse files Browse the repository at this point in the history
…ndicator-large-number-formatting

fix: Selection indicator large number formatting in some locales
  • Loading branch information
danharrin authored Nov 30, 2024
2 parents c9e458a + d724acd commit 1fa67c6
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 1fa67c6

Please sign in to comment.