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 0df571f commit 928bda1Copy full SHA for 928bda1
src/Filament/Clusters/Settings/Resources/ExportResource.php
@@ -164,10 +164,16 @@ public static function form(Form $form): Form
164
Forms\Components\Select::make('exporter')
165
->options($exporters)
166
->required()
167
- ->live(),
+ ->live()
168
+ ->afterStateUpdated(fn (Forms\Components\Select $component) => $component
169
+ ->getContainer()
170
+ ->getComponent('dynamicTypeFields')
171
+ ->getChildComponentContainer()
172
+ ->fill()),
173
174
Forms\Components\Group::make()
175
->statePath('payload.args')
176
+ ->key('dynamicTypeFields')
177
->dehydrated(true)
178
->schema(function (Forms\Get $get) {
179
0 commit comments