-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Closed
Labels
severity: lowDoes not significantly disrupt application functionality, or a workaround is availableDoes not significantly disrupt application functionality, or a workaround is availablestatus: acceptedThis issue has been accepted for implementationThis issue has been accepted for implementationtype: bugA confirmed report of unexpected behavior in the applicationA confirmed report of unexpected behavior in the application
Description
NetBox version
v3.6.4
Python version
3.8
Steps to Reproduce
- Navigate to
/extras/reports/ - Click on the name of a report
- Click on the "Jobs" tab
Expected Behavior
The number of rows in the table should match the number in the badge.
Observed Behavior
The table shows no rows, despite there being a number in the badge.
It looks like ReportJobsView has this line:
Line 1076 in 22e474f
| name=report.name |
While ScriptJobsView has this line:
Line 1252 in 22e474f
| name=script.class_name |
Changing ReportJobsView to have report.class_name instead of report.name seems to resolve this issue. Therefore, I suspect this might only be present on reports with a custom name set, but I am unable to test this at this time.
Metadata
Metadata
Assignees
Labels
severity: lowDoes not significantly disrupt application functionality, or a workaround is availableDoes not significantly disrupt application functionality, or a workaround is availablestatus: acceptedThis issue has been accepted for implementationThis issue has been accepted for implementationtype: bugA confirmed report of unexpected behavior in the applicationA confirmed report of unexpected behavior in the application