David Mignot

Results 55 comments of David Mignot

I reproduced the issue with the vue-apollo e2e test. If you add the `:fetch-policy="'no-cache'"` [to the ApolloQuery here](https://github.com/vuejs/vue-apollo/blob/master/tests/demo/src/components/ChannelView.vue#L81) After this change, running the `npm run test:e2e:dev:client` will show this error:...

Starting to wonder if this is an issue with apollo client. The [shouldNotifyIfLoading condition here](https://github.com/apollographql/apollo-client/blob/master/src/core/QueryInfo.ts#L190) don't seem to set the loading property if the fetch policy is no-cache or network-only....

Here is the most simple implementation of the `source` function which worked for my use case. Eventually the `dir` will probably need to be adapted. ``` const dir = __dirname;...

Wow great news 🔥 Sure the detail page by objektid/owner is not necessary for a first version so this would already make me really happy : ) Adding the detail...

I got the same issue and I found the problematic function. It's the post_type_link_filter here: https://github.com/KLicheR/wp-polylang-translate-rewrite-slugs/blob/master/polylang-translate-rewrite-slugs.php#L158 When the post is a draft it looks like the $post-post_name is not defined...

I'm not sure if this is exactly the same issue but my components where not discovered until I enabled the `UI Patterns Library` submodule. edit: Well, it is probably not...

So on the second site it appears that uninstalling and re-enabling the ui patterns modules and submodules finally fixed the issue. There might have an issue when I first enabled...

There is now a pull request to add php 8.1 compatibility to Timber 1: https://github.com/timber/timber/pull/2640 @jarednova and @nlemoine is there anything we can do to help with this merge request?

Thanks, I was having a hard time finding why the plugin broke. Note that if it might help one use case is to create a "Latest news" layout which would...

@danielroe the changes with the new `if (process.server)` condition here "broke" my current [data persisting solution](https://github.com/nuxt/nuxt/issues/18615#issuecomment-1413693370) given in #18615 . I was injecting data in `$nuxt.payload` on the "app:created" hook,...