From a04b22b090bad0affce7c5ce7de557e56e66f1d5 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 12 Jan 2024 23:49:50 +1100 Subject: [PATCH] Fix URL regex (#6218) URL regex for build report detail view was incorrect --- 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 539e135aaf..8d0b30e382 100644 --- a/InvenTree/report/api.py +++ b/InvenTree/report/api.py @@ -621,7 +621,7 @@ report_api_urls = [ name='api-build-report-metadata', ), re_path( - r'^.$', + r'^.*$', BuildReportDetail.as_view(), name='api-build-report-detail', ),