Skip to content

Commit d5226e3

Browse files
committed
fix: Group select not working well on some devices
Disable native select and use JS select for a unified experience
1 parent 1bac814 commit d5226e3

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

app/Filament/Resources/CustomPlaylists/RelationManagers/ChannelsRelationManager.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ public function table(Table $table): Table
276276
->schema([
277277
Select::make('group')
278278
->label('Select group')
279+
->native(false)
279280
->options(
280281
$ownerRecord->groupTags()->get()
281282
->map(fn ($name) => [

app/Filament/Resources/CustomPlaylists/RelationManagers/SeriesRelationManager.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ public function table(Table $table): Table
247247
->schema([
248248
Select::make('category')
249249
->label('Select category')
250+
->native(false)
250251
->options(
251252
$ownerRecord->categoryTags()->get()
252253
->map(fn ($name) => [

app/Filament/Resources/CustomPlaylists/RelationManagers/VodRelationManager.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ public function table(Table $table): Table
264264
->schema([
265265
Select::make('group')
266266
->label('Select group')
267+
->native(false)
267268
->options(
268269
$ownerRecord->groupTags()->get()
269270
->map(fn ($name) => [

0 commit comments

Comments
 (0)