Skip to content

Commit 7f7fccc

Browse files
committed
fix
1 parent 3427574 commit 7f7fccc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

resources/views/select-tree.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
grouped: '{{ $getGrouped() }}',
3131
openLevel: '{{ $getDefaultOpenLevel() }}',
3232
direction: '{{ $getDirection() }}',
33-
rtl: '{{ ((__('filament-panels::layout.direction')??'ltr')=='rtl'?true:false) }}'
33+
rtl: '{{ __('filament-panels::layout.direction')==='rtl' }}'
3434
})"
3535
>
3636
<div x-ref="tree"></div>

src/SelectTree.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ public function getDirection(): string
334334
{
335335
return $this->evaluate($this->direction);
336336
}
337+
337338
public function getDisabledOptions(): array
338339
{
339340
return $this->evaluate($this->disabledOptions);

0 commit comments

Comments
 (0)