2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 02:55:41 +00:00

fix part qr lable (#8255) (#8256)

(cherry picked from commit 560f57333c)

Co-authored-by: Volker <skydiablo@gmx.net>
This commit is contained in:
github-actions[bot]
2024-10-08 21:06:21 +11:00
committed by GitHub
parent 8c9a438e59
commit 6c0f6e38d0

View File

@ -451,7 +451,7 @@
$("#show-qr-code").click(function() { $("#show-qr-code").click(function() {
showQRDialog( showQRDialog(
'{% trans "Part QR Code" escape %}', '{% trans "Part QR Code" escape %}',
'{{ part.barcode }}', '{{ part.barcode|safe }}',
); );
}); });