Abraham Gausachs

Results 8 comments of Abraham Gausachs

What about this one? [https://github.com/alastairtree/Hangfire.MaximumConcurrentExecutions](url)

MSBuild 121 action has expired so there's not a solution in this moment. Please, update the VSIX on the Marketplace if possible. Thanks!

I just did a PR to solve it: https://github.com/mccj/Hangfire.Dashboard.Management/pull/18

Yes please. At least to fix the incompatibilty with Visual Studio 2022 >=17.2. Thanks!!

> New build created under actions. Will try to release this version via VS portal. Thank you Bert! Now I can see the new artifact under Actions, but only for...

I think the problem is at line 58 of management.js: ` $("input[id^='" + id + "']", container).each(function () { send[$(this).attr('id')] = $(this).val(); `});`` When applied on a checkbox input, it...

In fact, lcourson solves like this in its "Hangfire.Dashboard.Management.v2" repo: ` $("input[id^='" + id + "']", container).each(function () { if ($(this).is('[type=checkbox]')) { if ($(this).is(':checked')) { send[$(this).attr('id')] = "on"; } }...