Skip to content

Commit

Permalink
Fixes #14199: Fix jobs count for reports with a custom name
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Nov 29, 2023
1 parent 290aae5 commit ca15545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/extras/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@ def get(self, request, module, name):
jobs = Job.objects.filter(
object_type=object_type,
object_id=module.pk,
name=report.name
name=report.class_name
)

jobs_table = JobTable(
Expand Down

0 comments on commit ca15545

Please sign in to comment.