Hangfire.RecurringJobAdmin
Hangfire.RecurringJobAdmin copied to clipboard
styles are broken for a newer version of Hangfire
Hello @bamotav! Thank you for the tool. Unfortunately, one of latest HF updates broke some stiles of your page:
Can you please fix it?
Same here, the style is broken
It looks like the issue is already fixed by contributors, but @bamotav didn't push update to NuGet. Meanwhile I stopped with this stupid fix:
app.Use(async (ctx, next) =>
{
if (ctx.Request.Path.Value == "/hangfire/JobConfiguration/css/jobExtension")
{
using (var stream = typeof(WebStartup).Assembly.GetManifestResourceStream("Your.Namespace.cssfix.css"))
using (var reader = new StreamReader(stream))
{
var content = reader.ReadToEnd();
await ctx.Response.WriteAsync(content);
}
}
else
{
await next();
}
});
If somebody know less expensive option to override CSS, please let me know.
Hi @bamotav Is there any plan to push this fix on Nuget ? Thank you in advance :)