Ikaer
Ikaer
Any news on this issue ? or at least a workaround ?
I'm still using module "amd" with requirejs in some of my old projects :/. Is that so old school ?
@GammaGames Yes it's a good workaround, I have ended with the same kind of solution. But it's not perfect because "set checked" does not trigger the next callbacks (like onChange),...
I've used this solution to fix the problem: ```c# public class UseOriginalPathMiddleware { private const string OriginalPathHeader = "X-Original-URL"; private readonly RequestDelegate _next; public UseOriginalPathMiddleware(RequestDelegate next) { _next = next;...