Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Feb 18, 2023
1 parent c3e34ac commit 0b84069
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
20 changes: 20 additions & 0 deletions resources/lang/cs/components.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
'label' => 'Přidat k :label',
],

'create_item_between' => [
'label' => 'Vložit',
],

'delete_item' => [
'label' => 'Smazat',
],
Expand Down Expand Up @@ -52,6 +56,22 @@

],

'checkbox_list' => [

'buttons' => [

'deselect_all' => [
'label' => 'Odznačit vše',
],

'select_all' => [
'label' => 'Vybrat vše',
],

],

],

'key_value' => [

'buttons' => [
Expand Down
3 changes: 1 addition & 2 deletions src/Concerns/HasStateBindingModifiers.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Filament\Forms\Concerns;

use Filament\Forms\ComponentContainer;
use Filament\Forms\Components\Component;
use Illuminate\Support\Str;

Expand Down Expand Up @@ -65,7 +64,7 @@ public function getStateBindingModifiers(): array
return $this->getContainer()->getStateBindingModifiers();
}

if (($this instanceof ComponentContainer) && $this->getParentComponent()) {
if ($this->getParentComponent()) {
return $this->getParentComponent()->getStateBindingModifiers();
}

Expand Down

0 comments on commit 0b84069

Please sign in to comment.