Javascript error when launching Dashboard

In version 1.7.2, when launching the dashboard, I get this javascript error:

Unable to get property ‘intValue’ of undefined or null reference

In JS1720 file, line 196:
var newSucceeded = parseInt(statistics[“succeeded:count”].intValue);

1 Like

I’ve have the same issue. It’s not a Hangfire issue.
Somewhere in your OWIN pipeline the request body is being read (which can only be done once), and then Hangfire can’t read the post values. In my case it was WebApi that interferred, and when I moved the ‘app.UseWebApi’ to after the ‘app.UseHangfireDashboard’ it worked