From ec67f10fc86ffdf1a4048bfdca218069ad33dc7a Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 13 Jan 2024 00:01:02 +1100 Subject: [PATCH] Fix build API URL (#6219) - Backport of https://github.com/inventree/InvenTree/pull/6218 --- InvenTree/report/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/report/api.py b/InvenTree/report/api.py index 876f0fff1b..7f8748803e 100644 --- a/InvenTree/report/api.py +++ b/InvenTree/report/api.py @@ -528,7 +528,7 @@ report_api_urls = [ path(r'/', include([ re_path(r'print/?', BuildReportPrint.as_view(), name='api-build-report-print'), re_path(r'metadata/', MetadataView.as_view(), {'model': BuildReport}, name='api-build-report-metadata'), - re_path(r'^.$', BuildReportDetail.as_view(), name='api-build-report-detail'), + re_path(r'^.*$', BuildReportDetail.as_view(), name='api-build-report-detail'), ])), # List view