Skip to content

Commit 0bbb93a

Browse files
committed
Merge branch '2.x-updates' of https://github.com/solutionforest/Inspirecms-core into 2.x-updates
* '2.x-updates' of https://github.com/solutionforest/Inspirecms-core: Fix styling
2 parents 9d07136 + ef579e0 commit 0bbb93a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Filament/Resources/ContentResource/Pages/ViewContentRecord.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function hasCombinedRelationManagerTabsWithContent(): bool
3636
if (empty($this->getRelationManagers())) {
3737
return false;
3838
}
39-
39+
4040
return true;
4141
}
4242

src/Filament/Resources/Users/Tables/UsersAssociationTable.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function (Select $select) {
4949
'email',
5050
];
5151

52-
$getOptions = fn(RelationManager $livewire, $search = null) => SearchHelper::getAttachOptions(
52+
$getOptions = fn (RelationManager $livewire, $search = null) => SearchHelper::getAttachOptions(
5353
relationship: $livewire->getRelationship(),
5454
inverseRelationshipName: 'roles',
5555
optionsLimit: 50,
@@ -72,8 +72,8 @@ function (Select $select) {
7272

7373
return $select
7474
->allowHtml()
75-
->options(fn($livewire) => $getOptions($livewire))
76-
->getSearchResultsUsing(fn($search, $livewire) => $getOptions($livewire, $search));
75+
->options(fn ($livewire) => $getOptions($livewire))
76+
->getSearchResultsUsing(fn ($search, $livewire) => $getOptions($livewire, $search));
7777
}
7878
)
7979
->multiple(),

0 commit comments

Comments
 (0)