Thomas Aull
Thomas Aull
I'm currently facing the same issue with vue3, where I'm updating the args of a story when the value of an input updates. This means on every keystroke, the component...
I played around with it a bit and got it working with some prototype code, I might be able to put together a PR if I can make the time
PR is over here: https://github.com/storybookjs/storybook/pull/15168
@shilman This issue should be reopened, since the PR was reverted and there's needs for a better solution (proposal in https://github.com/storybookjs/storybook/issues/15345 might be one)
@sebastienva Thank you for your workaround, I've been running in to the same issue and was wasting a lot of time trying to solive it until I finally found this...
@gingebaker, @Sebiworld I honestly can't remember the exact reason I included this part, I guess there was a reason though. Maybe it had something to do with the template setting...
@gingebaker Yes, I noticed that and this could be a potential fix yes :) However, I think it's worth investigating why the module has problems with a non-existing trailing slash...
@Sebiworld In my tests I removed this part of the code, which adds the traling slashes to the routes (check my comment again 🙃) The strange thing happening was, that...
@Sebiworld I just found another problem resulting in the usage of the hook, when trying to delete a page. Considering the following examples: This uses a bootstrapped instance of ProcessWire,...
I found a potential workaround for the delete issue, when changing the code of `handleApiRequest` in `AppApi.module.php` to this, it seems to be working: ```php public function handleApiRequest(HookEvent $event) {...