michaelchart
michaelchart
We would also benefit from display:none elements being removed. In our scenario, we've got a 'mega nav' where the navigation is all loaded in the initial page load, and is...
@KevinJump I'm looking to use uSync Content in v8 to sync dictionary items as described in this ticket - creating dictionary items but not updating. Are you still planning to...
This feature would be useful in an Umbraco site to allow a different policy for the front end of the site vs the backoffice.
I've started to use conditional middleware like this: ``` app.UseWhen(context => context.Request.Path.StartsWithSegments(new PathString("/umbraco")), a => a.UseSecurityHeaders(policies => ...)); // backoffice policies app.UseWhen(context => !context.Request.Path.StartsWithSegments(new PathString("/umbraco")), a => a.UseSecurityHeaders(policies => ...));...