Skip to content

Commit

Permalink
Merge pull request #10818 from sakanjo/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Jan 15, 2024
1 parent 1bc4a06 commit ba7384f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/01-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Filament requires the following to run:
Require the Table Builder package using Composer:

```bash
composer require filament/tables:"^3.1" -W
composer require filament/tables:"^3.2" -W
```

## New Laravel projects
Expand Down
2 changes: 1 addition & 1 deletion docs/13-upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Please upgrade Filament before upgrading to Livewire v3. Instructions on how to
The easiest way to upgrade your app is to run the automated upgrade script. This script will automatically upgrade your application to the latest version of Filament, and make changes to your code which handle most breaking changes.

```bash
composer require filament/upgrade:"^3.1" -W --dev
composer require filament/upgrade:"^3.2" -W --dev
vendor/bin/filament-v3
```

Expand Down
4 changes: 4 additions & 0 deletions resources/lang/fr/table.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@

'actions' => [

'apply' => [
'label' => 'Appliquer les filtres',
],

'remove' => [
'label' => 'Supprimer le filtre',
],
Expand Down
2 changes: 1 addition & 1 deletion src/Concerns/HasFilters.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getTableFiltersForm(): Form
->columns($this->getTable()->getFiltersFormColumns())
->model($this->getTable()->getModel())
->statePath($this->getTable()->hasDeferredFilters() ? 'tableDeferredFilters' : 'tableFilters')
->when(! $this->getTable()->hasDeferredFilters(), fn (Form $form) => $form->live(onBlur: true));
->when(! $this->getTable()->hasDeferredFilters(), fn (Form $form) => $form->live());
}

public function updatedTableFilters(): void
Expand Down

0 comments on commit ba7384f

Please sign in to comment.