Brandon
Brandon
```php Camya\Filament\Forms\Components\TitleWithSlugInput::Camya\Filament\Forms\Components\{closure}(): Argument #2 ($set) must be of type Closure, Filament\Forms\Set given ``` Working on figuring out some changes with `$set` before this can be merged.
Hmm this is very close to working. The exception above is fixed but when editing the slug it's not showing up once you press "OK" despite it properly storing it...
nice!! i appreciate it
I don't think it's actually saving, I think it's just swapping a network request to update the state due to `->reactive()` on the inputs. It'd probably be a safe bet...
Updated the test stuff a bit but 3 of them are still failing due to https://github.com/livewire/livewire/blob/main/src/Features/SupportModels/ModelSynth.php#L20-L22 As far as I can tell the only fix for this on Livewire 3...
Ok I reproduced the character skipping when on a resource Create page. `->live(true)` instead of `->reactive()` is a "fix" but I think there's something else going on because it should...
Hmm, I'm not sure. I never used the plugin in v2 so I don't know how it behaved, but commenting out the [`$set` for the field slug](https://github.com/camya/filament-title-with-slug/blob/43922293f0609c4bc2286ba5e8fafca772073911/src/Forms/Components/TitleWithSlugInput.php#L87-L89) fixed the issue...
I changed the input reactivity to use blur due to Livewire's network requests not being able to keep up with typing when on a "Create" page where it will auto-generate...
If you want to do a quick PR against https://github.com/Log1x/filament-title-with-slug/tree/feat/filament-v3 I will merge it in – otherwise I don't mind doing these changes. I also don't mind forking and maintaining...
The cache stuff converts everything to JSON [here](https://github.com/Log1x/acf-composer/blob/master/src/Block.php#L523-L539) when writing the blocks from the Manifest [here](https://github.com/Log1x/acf-composer/blob/master/src/Manifest.php#L122-L139). I'm sorry, but I do not use WordPress for any multi-lang projects so I'll...