From 6c0f6e38d0f038d0db022f9e96c9544bc7b8f550 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:06:21 +1100 Subject: [PATCH] fix part qr lable (#8255) (#8256) (cherry picked from commit 560f57333c0aa20e82195252074a12d11b8ace40) Co-authored-by: Volker --- src/backend/InvenTree/part/templates/part/part_base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/InvenTree/part/templates/part/part_base.html b/src/backend/InvenTree/part/templates/part/part_base.html index b29f40f751..b4b90e04c2 100644 --- a/src/backend/InvenTree/part/templates/part/part_base.html +++ b/src/backend/InvenTree/part/templates/part/part_base.html @@ -451,7 +451,7 @@ $("#show-qr-code").click(function() { showQRDialog( '{% trans "Part QR Code" escape %}', - '{{ part.barcode }}', + '{{ part.barcode|safe }}', ); });