Serge ARADJ
Serge ARADJ
Hey, This is done by Navigo itself, we do not update the URL ourselves. Moreover, I did some new tests by adding an `after` `hook` and triggering a `CustomEvent` in...
Hi, I just discovered the same pain point in my application. Trying to register a policy to handle any generic `IEnumerable`-compatible result which is empty (`!coll.Any()`), and if so, retry...
We are experiencing the exact same issue. Here follows our EDM configuration : ```C# var odataBuilder = new ODataConventionModelBuilder(); ... odataBuilder.EntitySet("myobjects"); ... odataBuilder.EnableLowerCamelCase(); ``` We need to enable the lower...
Hi @stephaneey We are still running our pipelines using our own override of your Azure DevOps extension including this evolution, waiting for this PR to be validated. If by any...
Hi @stephaneey Any news on your side ? Thx
Hi @stephaneey , really sorry to bother you again on this request, but despite the merge you have done, it seems that the extension is not updated with the new...
Hi the Electron team ! I encounter a very similar issue, though on my side, `document.hidden` and the `visibilitychange` event seems reliable when it comes to minimizing/maximizing the window. The...
Hello there :) Any chance to have an update from you on this ? We still are experiencing the issue, the remote site (Azure Devops in this case) still rely...
If this can be of any help, I just checked that, on the same breakpoint where `document.hidden` gives the wrong information, `document.webkitHidden` is perfectly reliable.
Thank you for your answer. FYI, in my case, I had to rely on the `.ReplaceService()` extension method on `DbContextOptionsBuilder` to add the following logic on model finalization ``` ///...