We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3427574 commit 7f7fcccCopy full SHA for 7f7fccc
resources/views/select-tree.blade.php
@@ -30,7 +30,7 @@
30
grouped: '{{ $getGrouped() }}',
31
openLevel: '{{ $getDefaultOpenLevel() }}',
32
direction: '{{ $getDirection() }}',
33
- rtl: '{{ ((__('filament-panels::layout.direction')??'ltr')=='rtl'?true:false) }}'
+ rtl: '{{ __('filament-panels::layout.direction')==='rtl' }}'
34
})"
35
>
36
<div x-ref="tree"></div>
src/SelectTree.php
@@ -334,6 +334,7 @@ public function getDirection(): string
334
{
335
return $this->evaluate($this->direction);
336
}
337
+
338
public function getDisabledOptions(): array
339
340
return $this->evaluate($this->disabledOptions);
0 commit comments